dinopkg/src/main.rs
SkyfallWasTaken f9d384d350 Broken
2024-07-09 20:43:00 +01:00

11 lines
185 B
Rust

use clap::Parser;
mod command;
use command::{Cli, Command};
#[tokio::main]
async fn main() {
let cli = Cli::parse();
cli.command.run().await;
println!("Hello, world!");
}