repo_analyzer/lib.rs
1// Export modules
2pub mod analyzer;
3pub mod cli;
4pub mod config;
5pub mod git;
6pub mod report;
7pub mod s3;
8
9// Re-export main types for convenience
10pub use analyzer::RepositoryAnalysis;
11pub use cli::Cli;
12pub use config::Config;
13
14// Version information
15pub const VERSION: &str = env!("CARGO_PKG_VERSION");
16pub const AUTHOR: &str = env!("CARGO_PKG_AUTHORS");