added interactive param

This commit is contained in:
sreedev
2023-01-09 11:13:29 -05:00
parent e158a8267a
commit 0f33b4d6b5

View File

@@ -12,9 +12,12 @@ pub struct Params {
/// Run Deduplicator on dir different from pwd
#[arg(long)]
pub dir: Option<PathBuf>,
/// Don't use cache for indexing files (default = true)
/// Don't use cache for indexing files (default = false)
#[arg(long, short)]
pub nocache: bool,
/// Delete files interactively
#[arg(long, short)]
pub interactive: bool
}
impl Params {