tauri-test-app/tta-cli/src/main.rs
2025-01-21 20:52:34 +01:00

11 lines
166 B
Rust

use clap::Parser;
#[derive(Parser)]
struct Args {
greetee: String,
}
fn main() {
let args = Args::parse();
println!("{}", tta::greet(&args.greetee));
}