code-it-later-rs 0.1.3

Filter crumbs you left in comments of code to remind where you were
Documentation
1
2
3
4
5
6
7
8
use clap::Clap;
use code_it_later_rs::{config, fs_operation};

fn main() {
    let args = config::Args::parse();
    let conf = config::Config::from(&args);
    fs_operation::handle_files(&conf);
}