mirror of
https://github.com/clap-rs/clap
synced 2024-12-14 23:02:31 +00:00
11 lines
107 B
Rust
11 lines
107 B
Rust
|
use clap::Clap;
|
||
|
|
||
|
#[derive(Clap, Debug)]
|
||
|
struct Opt {
|
||
|
verbose: bool,
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
Opt::parse();
|
||
|
}
|