diff options
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs index adffdec..30ecea3 100644 --- a/src/main.rs +++ b/src/main.rs | |||
| @@ -37,7 +37,7 @@ enum Commands { | |||
| 37 | /// issue commits as a proposal | 37 | /// issue commits as a proposal |
| 38 | Send(sub_commands::send::SubCommandArgs), | 38 | Send(sub_commands::send::SubCommandArgs), |
| 39 | /// list proposals; checkout, apply or download selected | 39 | /// list proposals; checkout, apply or download selected |
| 40 | List(sub_commands::list::SubCommandArgs), | 40 | List, |
| 41 | /// send proposal revision | 41 | /// send proposal revision |
| 42 | Push(sub_commands::push::SubCommandArgs), | 42 | Push(sub_commands::push::SubCommandArgs), |
| 43 | /// fetch and apply new proposal commits / revisions linked to branch | 43 | /// fetch and apply new proposal commits / revisions linked to branch |
| @@ -53,7 +53,7 @@ async fn main() -> Result<()> { | |||
| 53 | Commands::Login(args) => sub_commands::login::launch(&cli, args).await, | 53 | Commands::Login(args) => sub_commands::login::launch(&cli, args).await, |
| 54 | Commands::Init(args) => sub_commands::init::launch(&cli, args).await, | 54 | Commands::Init(args) => sub_commands::init::launch(&cli, args).await, |
| 55 | Commands::Send(args) => sub_commands::send::launch(&cli, args).await, | 55 | Commands::Send(args) => sub_commands::send::launch(&cli, args).await, |
| 56 | Commands::List(args) => sub_commands::list::launch(&cli, args).await, | 56 | Commands::List => sub_commands::list::launch().await, |
| 57 | Commands::Pull => sub_commands::pull::launch().await, | 57 | Commands::Pull => sub_commands::pull::launch().await, |
| 58 | Commands::Push(args) => sub_commands::push::launch(&cli, args).await, | 58 | Commands::Push(args) => sub_commands::push::launch(&cli, args).await, |
| 59 | } | 59 | } |