mirror of
https://github.com/clap-rs/clap
synced 2024-12-14 23:02:31 +00:00
21 lines
375 B
Rust
21 lines
375 B
Rust
|
use clap::Parser;
|
||
|
|
||
|
#[derive(Parser)]
|
||
|
#[clap(name = "MyApp")]
|
||
|
#[clap(author = "Kevin K. <kbknapp@gmail.com>")]
|
||
|
#[clap(version = "1.0")]
|
||
|
#[clap(about = "Does awesome things")]
|
||
|
struct Cli {
|
||
|
#[clap(long)]
|
||
|
two: String,
|
||
|
#[clap(long)]
|
||
|
one: String,
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
let cli = Cli::parse();
|
||
|
|
||
|
println!("two: {:?}", cli.two);
|
||
|
println!("one: {:?}", cli.one);
|
||
|
}
|