feat: add basic cli

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2024-08-23 21:53:25 +02:00
parent a4213ea61f
commit 5bc831da10
4 changed files with 200 additions and 1802 deletions

View File

@@ -19,9 +19,9 @@ async fn main() -> anyhow::Result<()> {
tracing_subscriber::fmt::init();
let cli = Command::parse();
tracing::debug!("Starting cli");
tracing::debug!("Starting cli");
if let Some(Commands::Hello { }) = cli.command {
if let Some(Commands::Hello {}) = cli.command {
println!("Hello!")
}