mirror of
https://github.com/clap-rs/clap
synced 2024-12-15 15:22:30 +00:00
be60de036b
As using structopt without structopt_derive is quite meaningless, reexport structopt_derive, symplifying the usage. Inspired by the failure crate. fix #45
28 lines
666 B
Rust
28 lines
666 B
Rust
// Copyright (c) 2017 Guillaume Pinot <texitoi(a)texitoi.eu>
|
|
//
|
|
// This work is free. You can redistribute it and/or modify it under
|
|
// the terms of the Do What The Fuck You Want To Public License,
|
|
// Version 2, as published by Sam Hocevar. See the COPYING file for
|
|
// more details.
|
|
|
|
#[macro_use]
|
|
extern crate structopt;
|
|
|
|
mod options {
|
|
#[derive(Debug, StructOpt)]
|
|
pub struct Options {
|
|
#[structopt(subcommand)]
|
|
pub subcommand: ::subcommands::SubCommand,
|
|
}
|
|
}
|
|
|
|
mod subcommands {
|
|
#[derive(Debug, StructOpt)]
|
|
pub enum SubCommand {
|
|
#[structopt(name = "foo", about = "foo")]
|
|
Foo {
|
|
#[structopt(help = "foo")]
|
|
bars: Vec<String>,
|
|
},
|
|
}
|
|
}
|