mirror of
https://github.com/openharmony/third_party_rust_clap.git
synced 2026-07-19 13:14:38 -04:00
14 lines
219 B
Rust
14 lines
219 B
Rust
use clap::Parser;
|
|
|
|
#[derive(Parser, Debug)]
|
|
#[command(name = "basic")]
|
|
struct Opt {
|
|
#[arg(short, value_enum, default_value_t)]
|
|
opts: bool,
|
|
}
|
|
|
|
fn main() {
|
|
let opt = Opt::parse();
|
|
println!("{:?}", opt);
|
|
}
|