use{argh::FromArgs,std::path::PathBuf,};#[derive(FromArgs)]/// Help you remove duplicate files from your disks
///////// Source and doc at https://github.com/Canop/backdown
pubstructArgs{/// print the version
#[argh(switch, short = 'v')]pubversion:bool,
/// whether to only handle image files
#[argh(switch, short = 'i')]pubonly_images:bool,
#[argh(positional)]/// where to look for duplicates (will use . if no directory is provided)
pubpath:Option<PathBuf>,
}