mirror of
https://github.com/SkyfallWasTaken/dinopkg.git
synced 2025-02-22 12:42:07 +00:00
11 lines
185 B
Rust
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!");
|
|
}
|