Add cli crate

This commit is contained in:
Joscha 2025-01-21 20:48:09 +01:00
parent 8fbdf63c51
commit be99e7b3aa
4 changed files with 267 additions and 1 deletions

11
tta-cli/src/main.rs Normal file
View file

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