diff --git a/rust/agama-cli/src/commands.rs b/rust/agama-cli/src/commands.rs index 46615a4abe..acce9033ca 100644 --- a/rust/agama-cli/src/commands.rs +++ b/rust/agama-cli/src/commands.rs @@ -11,12 +11,6 @@ pub enum Commands { #[command(subcommand)] Config(ConfigCommands), - /// Display information about installation settings (e.g., possible values) - Info { - /// Configuration keys (e.g., software.products) - keys: Vec, - }, - /// Start probing Probe, // Start Installation Install, diff --git a/rust/agama-cli/src/main.rs b/rust/agama-cli/src/main.rs index 33117ae481..c715aff589 100644 --- a/rust/agama-cli/src/main.rs +++ b/rust/agama-cli/src/main.rs @@ -138,7 +138,6 @@ async fn run_command(cli: Cli) -> anyhow::Result<()> { Commands::Questions(subcommand) => run_questions_cmd(subcommand).await, Commands::Logs(subcommand) => run_logs_cmd(subcommand).await, Commands::Auth(subcommand) => run_auth_cmd(subcommand).await, - _ => unimplemented!(), } }