diff --git a/ark-cli/src/commands/backup.rs b/ark-cli/src/commands/backup.rs index abaf54ed..398220bd 100644 --- a/ark-cli/src/commands/backup.rs +++ b/ark-cli/src/commands/backup.rs @@ -15,8 +15,6 @@ pub struct Backup { } impl Backup { - // FIXME: The logic for backup should be moved out of `ark-cli` - // so that it can be used by other applications pub fn run(&self) -> Result<(), AppError> { let timestamp = timestamp().as_secs(); let backup_dir = home_dir() diff --git a/ark-cli/src/commands/storage/list.rs b/ark-cli/src/commands/storage/list.rs index 36d6597a..a3a3fe0c 100644 --- a/ark-cli/src/commands/storage/list.rs +++ b/ark-cli/src/commands/storage/list.rs @@ -12,8 +12,7 @@ pub struct List { root_dir: Option, #[clap(help = "Storage name")] storage: Option, - // TODO: What is the purpose of this field? Add a help message to clarify. - #[clap(short, long, action = clap::ArgAction::SetTrue)] + #[clap(short, long, action = clap::ArgAction::SetTrue, help = "Whether or not to use atomatic versioning")] versions: bool, #[clap(short, long, value_enum, help = "Storage kind of the resource")] kind: Option,