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