dyd 0.4.0

CLI for daily diffing of git repos
Documentation
use clap::Parser;

#[derive(Parser, Debug)]
pub struct CLI {
    #[clap(short, long, default_value = "dyd.toml")]
    pub manifest: std::path::PathBuf,
}

impl Default for CLI {
    fn default() -> Self {
        Self::new()
    }
}

impl CLI {
    pub fn new() -> Self {
        CLI::parse()
    }
}