1//! Code analysis modules. 2 3mod complexity; 4mod file; 5pub mod stats; 6 7pub use complexity::ComplexityAnalyzer; 8pub use file::FileAnalyzer;