diff options
Diffstat (limited to 'mullvad-cli/src/cmds/account.rs')
| -rw-r--r-- | mullvad-cli/src/cmds/account.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/mullvad-cli/src/cmds/account.rs b/mullvad-cli/src/cmds/account.rs index 4d42c8c226..1beee454c7 100644 --- a/mullvad-cli/src/cmds/account.rs +++ b/mullvad-cli/src/cmds/account.rs @@ -22,10 +22,12 @@ impl Command for Account { .help("The Mullvad account token to configure the client with") .required(true), ), - ).subcommand( + ) + .subcommand( clap::SubCommand::with_name("get") .about("Display information about the currently configured account"), - ).subcommand( + ) + .subcommand( clap::SubCommand::with_name("unset") .about("Removes the account number from the settings"), ) |
