smbcloud-cli 0.4.1

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 with your email address.")]
    Signup {},
    #[clap(about = "Log in to your account. If you need one first, run `smb signup`.")]
    Login {},
    #[clap(about = "Log out of your current session.")]
    Logout {},
    #[clap(about = "Start the password reset flow.")]
    Forgot {},
}