patchy/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
pub mod backup;
pub mod commands;
pub mod flags;
pub mod git_commands;
pub mod types;
pub mod utils;

pub static CONFIG_ROOT: &str = ".patchy";
pub static CONFIG_FILE: &str = "config.toml";
pub static APP_NAME: &str = "patchy";
pub static INDENT: &str = "  ";