Moved the /menu up in the list of commands

This commit is contained in:
StNicolay 2023-07-29 16:00:02 +03:00
parent 0fac457944
commit 42088e69fe
Signed by: StNicolay
GPG Key ID: 9693D04DCD962B0D

View File

@ -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,
}