From 229542f0e2ea1b8f220723f7b894d7043cdfbde2 Mon Sep 17 00:00:00 2001 From: Mikhail Mitrofanov Date: Sat, 9 Aug 2025 00:04:03 +0300 Subject: [PATCH] Remote test command --- src/main.rs | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/src/main.rs b/src/main.rs index b3f7a21..5536d9d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -33,12 +33,6 @@ struct CliArgs { #[derive(Subcommand, Debug, Clone)] enum Commands { - /// does testing things - Test { - /// lists test values - #[arg(short, long)] - list: bool, - }, /// Remember personal nuget api key Auth { key: String, @@ -273,14 +267,6 @@ async fn main() { } match &args.command { - Some(Commands::Test { list }) => { - if *list { - println!("Printing testing lists..."); - } else { - println!("Not printing testing lists..."); - } - } - Some(Commands::Auth { key }) => { regular_key(key); }