mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-20 11:59:54 +00:00
10 lines
125 B
Rust
10 lines
125 B
Rust
use structopt::StructOpt;
|
|
|
|
#[derive(StructOpt, Debug)]
|
|
struct Opt {
|
|
verbose: bool,
|
|
}
|
|
|
|
fn main() {
|
|
Opt::from_args();
|
|
} |