1pub mod backup;
2pub mod commands;
3pub mod flags;
4pub mod git_commands;
5pub mod types;
6pub mod utils;
7
8pub static CONFIG_ROOT: &str = ".patchy";
9pub static CONFIG_FILE: &str = "config.toml";
10pub static APP_NAME: &str = "patchy";
11pub static INDENT: &str = " ";