From 91a68de459b7d22a8dfb8a324e43740fca3e0a35 Mon Sep 17 00:00:00 2001 From: DanConwayDev Date: Fri, 22 Mar 2024 07:35:24 +0000 Subject: chore: nix flake update update nix dependancies to latest version using default update options --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main.rs') 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 { /// issue commits as a proposal Send(sub_commands::send::SubCommandArgs), /// list proposals; checkout, apply or download selected - List(sub_commands::list::SubCommandArgs), + List, /// send proposal revision Push(sub_commands::push::SubCommandArgs), /// fetch and apply new proposal commits / revisions linked to branch @@ -53,7 +53,7 @@ async fn main() -> Result<()> { Commands::Login(args) => sub_commands::login::launch(&cli, args).await, Commands::Init(args) => sub_commands::init::launch(&cli, args).await, Commands::Send(args) => sub_commands::send::launch(&cli, args).await, - Commands::List(args) => sub_commands::list::launch(&cli, args).await, + Commands::List => sub_commands::list::launch().await, Commands::Pull => sub_commands::pull::launch().await, Commands::Push(args) => sub_commands::push::launch(&cli, args).await, } -- cgit v1.2.3