summaryrefslogtreecommitdiffstats
path: root/vendor/clap-3.2.20/src/bin/stdio-fixture.rs
blob: e3f34b41a22afd3fd7b37f0d7c6ff2f3e477171a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
fn main() {
    let cmd = clap::Command::new("stdio-fixture")
        .version("1.0")
        .long_version("1.0 - a2132c")
        .arg_required_else_help(true)
        .subcommand(clap::Command::new("more"))
        .arg(
            clap::Arg::new("verbose")
                .long("verbose")
                .help("log")
                .long_help("more log"),
        );
    cmd.get_matches();
}