chronicle 0.1.0

write your chronicle from command line
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod cli;
mod sub;

fn main() {
    match pre::read_config() {
        Ok(mut cfg) => {
            match cli::exec(&mut cfg) {
                Ok(_) => (),
                Err(e) => eprintln!("{e}"),
            }
        },
        Err(e) => eprintln!("{e}"),
    }
}