From e8704a2560cf23feabe6bd67100ea82c9613668f Mon Sep 17 00:00:00 2001 From: Sam Poder Date: Tue, 6 Jun 2023 15:50:22 +0000 Subject: [PATCH] Add Start Command This uses the subcommands feature, it was requested by Conrad. --- burrow/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/burrow/src/main.rs b/burrow/src/main.rs index 091f9d7..4e025bc 100644 --- a/burrow/src/main.rs +++ b/burrow/src/main.rs @@ -19,6 +19,6 @@ async fn try_main() -> Result<()> { #[tokio::main(flavor = "current_thread")] async fn main() { - let cli = Cli::parse(); + let _cli = Cli::parse(); try_main().await.unwrap(); }