cuddle-templates/cuddle-rust-cli/crates/%%name%%/src/main.rs
kjuulh 70e5aaa107
feat: add rust cli
Signed-off-by: kjuulh <contact@kjuulh.io>
2024-03-30 00:25:11 +01:00

30 lines
581 B
Rust

use anyhow::Context;
use clap::{Parser, Subcommand};
#[derive(Parser)]
#[command(author, version, about, long_about = None, subcommand_required = true)]
struct Command {
#[command(subcommand)]
command: Option<Commands>,
}
#[derive(Subcommand)]
enum Commands {
Hello {},
}
#[tokio::main]
async fn main() -> anyhow::Result<()> {
dotenv::dotenv().ok();
tracing_subscriber::fmt::init();
let cli = Command::parse();
tracing::debug!("Starting cli");
if let Some(Commands::Hello { }) = cli.command {
println!("Hello!")
}
Ok(())
}