Remote test command

This commit is contained in:
2025-08-09 00:04:03 +03:00
parent e1881782fe
commit 229542f0e2
-14
View File
@@ -33,12 +33,6 @@ struct CliArgs {
#[derive(Subcommand, Debug, Clone)] #[derive(Subcommand, Debug, Clone)]
enum Commands { enum Commands {
/// does testing things
Test {
/// lists test values
#[arg(short, long)]
list: bool,
},
/// Remember personal nuget api key /// Remember personal nuget api key
Auth { Auth {
key: String, key: String,
@@ -273,14 +267,6 @@ async fn main() {
} }
match &args.command { match &args.command {
Some(Commands::Test { list }) => {
if *list {
println!("Printing testing lists...");
} else {
println!("Not printing testing lists...");
}
}
Some(Commands::Auth { key }) => { Some(Commands::Auth { key }) => {
regular_key(key); regular_key(key);
} }