use clap::Parser;
#[derive(Parser, Debug)]
#[command(author, version, about)]
pub struct Cli {
#[arg(short, long, value_hint=clap::ValueHint::FilePath, default_value = "config/config.yml")]
pub config: String,
#[arg(short, long)]
pub test: bool,
#[arg(long)]
pub disable_watch: bool,
#[arg(long)]
pub verbose: bool,
}