added nocache option

This commit is contained in:
sreedev
2022-12-29 23:48:34 -05:00
parent 61df73e146
commit 57083a7346
6 changed files with 35 additions and 101 deletions

View File

@@ -12,5 +12,8 @@ pub struct App {
pub delete: Option<String>,
/// Run Deduplicator on dir different from pwd
#[arg(long)]
pub dir: Option<PathBuf>
pub dir: Option<PathBuf>,
/// Don't use cache for indexing files (default = true)
#[arg(long, short)]
pub nocache: bool
}