Skip to main content

semantic_commit/
lib.rs

1mod cli;
2mod commit;
3mod completion;
4mod git;
5mod staged_context;
6
7pub fn run() -> i32 {
8    cli::run()
9}