use clap::Parser;
#[derive(Parser)]
#[clap(version = clap::crate_version!(), author = clap::crate_authors!())]
pub struct Args {
/// Turn debugging information on
#[clap(short, long, action = clap::ArgAction::Count)]
pub verbose: u8,
}
use clap::Parser;
#[derive(Parser)]
#[clap(version = clap::crate_version!(), author = clap::crate_authors!())]
pub struct Args {
/// Turn debugging information on
#[clap(short, long, action = clap::ArgAction::Count)]
pub verbose: u8,
}