1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use clap::Parser;

/// CLI application that search duplicate files in a folder
#[derive(Parser, Debug)]
#[command(author, version, about, long_about = None)]
pub struct CmdArgs {
    /// Root folder to search duplicate
    #[arg(short, long)]
    pub root_folder: String,

    /// Serch score for duplicate file names, default is 90
    #[arg(short, long, default_value_t = 90)]
    pub search_score: i64,

}

#[cfg(test)]
mod tests {}