feat: Support rm
and ls
aliases #22
1 changed files with 4 additions and 2 deletions
|
@ -34,9 +34,11 @@ pub mod remove_command;
|
|||
pub enum Commands {
|
||||
/// Add new vault
|
||||
Add(add_command::Add),
|
||||
/// Remove vault
|
||||
/// Remove vault [alias `rm`]
|
||||
#[command(alias = "rm")]
|
||||
Remove(remove_command::Remove),
|
||||
/// List your vaults and search
|
||||
/// List your vaults and search [alias `ls`]
|
||||
#[command(alias = "ls")]
|
||||
List(list_command::List),
|
||||
/// Clean the vaults file
|
||||
Clean(clean_command::Clean),
|
||||
|
|
Loading…
Reference in a new issue