mirror of
https://github.com/clap-rs/clap
synced 2024-11-10 06:44:16 +00:00
16 lines
214 B
Rust
16 lines
214 B
Rust
use clap::Parser;
|
|
|
|
#[derive(Parser, Debug)]
|
|
#[command]
|
|
struct Opt {}
|
|
|
|
#[derive(Parser, Debug)]
|
|
struct Opt1 {
|
|
#[arg = "short"]
|
|
foo: u32,
|
|
}
|
|
|
|
fn main() {
|
|
let opt = Opt::parse();
|
|
println!("{opt:?}");
|
|
}
|