smbcloud-cli 0.3.38

smbCloud command line interface.
1
2
3
4
5
6
7
8
9
10
11
12
13
use clap::Subcommand;

#[derive(Subcommand)]
pub enum Commands {
    #[clap(about = "Create an account. Use your email as your username.")]
    Signup {},
    #[clap(about = "Login to your account. To create an account, use smb signup.")]
    Login {},
    #[clap(about = "Logout all session.")]
    Logout {},
    #[clap(about = "Forgot email? Use this command to reset your password.")]
    Forgot {},
}