From 42088e69fec6f05bc4083275bb564bc608eaf057 Mon Sep 17 00:00:00 2001 From: StNicolay Date: Sat, 29 Jul 2023 16:00:02 +0300 Subject: [PATCH] Moved the /menu up in the list of commands --- src/commands/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/mod.rs b/src/commands/mod.rs index 4769947..a8eb5e7 100644 --- a/src/commands/mod.rs +++ b/src/commands/mod.rs @@ -42,6 +42,8 @@ pub enum Command { Help, #[command(description = "sets the master password")] SetMasterPass, + #[command(description = "gives you a menu to manage your accounts")] + Menu, #[command(description = "adds the account")] AddAccount, #[command(description = "gets the account")] @@ -58,8 +60,6 @@ pub enum Command { Import, #[command(description = "generates 10 secure passwords")] GenPassword, - #[command(description = "gives you a menu to manage your accounts")] - Menu, #[command(description = "cancels the current action")] Cancel, }