1
2
3
4
5
6
7
use clap::Parser;

#[derive(Parser, Debug)]
#[clap(author, version, about)]
pub struct Args {
    pub path: String,
}