smbpndk_cli/account/cli.rs
1use clap::Subcommand;
2
3#[derive(Subcommand)]
4pub enum Commands {
5 #[clap(about = "Create an account. Use your email as your username.")]
6 Signup {},
7 #[clap(about = "Login to your account. To create an account, use smb signup.")]
8 Login {},
9 #[clap(about = "Logout all session.")]
10 Logout {},
11 #[clap(about = "Forgot email? Use this command to reset your password.")]
12 Forgot {},
13}