This commit is contained in:
2024-05-21 18:32:52 +02:00
commit 8c6ae8f237
6 changed files with 309 additions and 0 deletions

8
src/arguments.rs Normal file
View File

@@ -0,0 +1,8 @@
use clap::Parser;
#[derive(Parser, Debug)]
#[command(version, about, long_about = None)]
pub struct Arguments {
#[arg(short, long, help = "The menu prompt message", default_value_t = String::from(""))]
pub prompt: String,
}