chore: cleanup

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
Kasper Juul Hermansen 2023-07-29 18:33:40 +02:00
parent aa74c13049
commit ff9b61ee4a
Signed by: kjuulh
GPG Key ID: 9AA7BC13CE474394
2 changed files with 1 additions and 7 deletions

View File

@ -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(

View File

@ -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(())