From 142370e703c62a35127da5008da43b1e5a27ab4e Mon Sep 17 00:00:00 2001 From: Eduard Tolosa Date: Mon, 5 Feb 2024 03:30:37 -0500 Subject: [PATCH] Remove unused flag. --- src/args.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/args.rs b/src/args.rs index 294f046..1e9f371 100644 --- a/src/args.rs +++ b/src/args.rs @@ -62,9 +62,6 @@ pub struct Args { /// Create read-write/rw snapshots. #[clap(short = 'w', long = "rw")] pub read_write: bool, - /// Init the Rusnapshot database and directory structure. - #[clap(long = "init")] - pub init: bool, } impl Args {