aboutsummaryrefslogtreecommitdiffstats
path: root/src/cli.rs
blob: dc53357d91e390da4d927bc59c5d9020117d22e5 (plain)
1
2
3
4
5
6
7
8
use clap::Parser;

#[derive(Parser, Debug)]
#[command(author, version, about, long_about = None)]
pub struct Args {
    #[arg(short, long)]
    pub file: String,
}