diff --git a/crates/cuddle-please/src/command.rs b/crates/cuddle-please/src/command.rs index 8e04736..a54ae46 100644 --- a/crates/cuddle-please/src/command.rs +++ b/crates/cuddle-please/src/command.rs @@ -179,10 +179,7 @@ enum Commands { #[derive(Subcommand, Debug, Clone)] enum ConfigCommand { /// List will list the final configuration - List { - #[arg(long)] - someArg: String, - }, + List {}, } fn get_current_path( diff --git a/crates/cuddle-please/src/main.rs b/crates/cuddle-please/src/main.rs index 145acaa..6a4e57c 100644 --- a/crates/cuddle-please/src/main.rs +++ b/crates/cuddle-please/src/main.rs @@ -2,7 +2,6 @@ pub mod command; pub mod ui; use command::Command; -use ui::{ConsoleUi}; #[tokio::main] async fn main() -> anyhow::Result<()> { @@ -12,8 +11,6 @@ async fn main() -> anyhow::Result<()> { let current_dir = std::env::current_dir().ok(); let current_dir = current_dir.as_ref().map(|p| p.as_path()); - let _ui = ConsoleUi::new(); - Command::new().execute(current_dir)?; Ok(())