diff options
Diffstat (limited to 'src/bin/ngit/main.rs')
| -rw-r--r-- | src/bin/ngit/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bin/ngit/main.rs b/src/bin/ngit/main.rs index 53fee06..cdd0e97 100644 --- a/src/bin/ngit/main.rs +++ b/src/bin/ngit/main.rs | |||
| @@ -17,6 +17,7 @@ async fn main() -> Result<()> { | |||
| 17 | match &cli.command { | 17 | match &cli.command { |
| 18 | Commands::Fetch(args) => sub_commands::fetch::launch(&cli, args).await, | 18 | Commands::Fetch(args) => sub_commands::fetch::launch(&cli, args).await, |
| 19 | Commands::Login(args) => sub_commands::login::launch(&cli, args).await, | 19 | Commands::Login(args) => sub_commands::login::launch(&cli, args).await, |
| 20 | Commands::Logout => sub_commands::logout::launch().await, | ||
| 20 | Commands::Init(args) => sub_commands::init::launch(&cli, args).await, | 21 | Commands::Init(args) => sub_commands::init::launch(&cli, args).await, |
| 21 | Commands::ExportKeys => sub_commands::export_keys::launch().await, | 22 | Commands::ExportKeys => sub_commands::export_keys::launch().await, |
| 22 | Commands::Send(args) => sub_commands::send::launch(&cli, args, false).await, | 23 | Commands::Send(args) => sub_commands::send::launch(&cli, args, false).await, |