Add source files: main.rs, lib.rs, cli.rs, error.rs
Some checks failed
CI / test (push) Has been cancelled

This commit is contained in:
2026-01-31 11:38:14 +00:00
parent 048854437a
commit 26c25c6f7b

11
src/lib.rs Normal file
View File

@@ -0,0 +1,11 @@
pub mod error;
pub mod analyzer;
pub mod convention;
pub mod config;
pub mod interactive;
pub mod output;
pub use error::Error;
pub use analyzer::Analyzer;
pub use convention::{CommitType, CommitConvention, Scope};
pub use config::Config;