rona/lib.rs
1pub mod cli;
2pub mod git_related;
3pub mod my_clap_theme;
4pub mod utils;
5
6/// Root directory of a Git repository or submodule.
7pub const GIT_ROOT: &str = ".git";
8
9// const GITIGNORE_FILE_PATH: &str = ".gitignore";
10// const COMMIT_MESSAGE_FILE: &str = "commit_message.md";
11// const COMMITIGNORE_FILE_PATH: &str = ".commitignore";
12// const COMMIT_TYPES: [&str; 4] = ["chore", "feat", "fix", "test"];