mirror of
https://github.com/clap-rs/clap
synced 2024-12-13 14:22:34 +00:00
1258f3e5f6
Better to set on individual args
18 lines
324 B
Rust
18 lines
324 B
Rust
use clap::Parser;
|
|
|
|
#[derive(Parser)]
|
|
#[command(author, version, about, long_about = None)]
|
|
#[command(next_line_help = true)]
|
|
struct Cli {
|
|
#[arg(long)]
|
|
two: String,
|
|
#[arg(long)]
|
|
one: String,
|
|
}
|
|
|
|
fn main() {
|
|
let cli = Cli::parse();
|
|
|
|
println!("two: {:?}", cli.two);
|
|
println!("one: {:?}", cli.one);
|
|
}
|