1 // Copyright 2018 Guillaume Pinot (@TeXitoi) <texitoi@texitoi.eu>, 2 // Kevin Knapp (@kbknapp) <kbknapp@gmail.com>, and 3 // Ana Hobden (@hoverbear) <operator@hoverbear.org> 4 // 5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or 6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license 7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your 8 // option. This file may not be copied, modified, or distributed 9 // except according to those terms. 10 // 11 // This work was derived from Structopt (https://github.com/TeXitoi/structopt) 12 // commit#ea76fa1b1b273e65e3b0b1046643715b49bec51f which is licensed under the 13 // MIT/Apache 2.0 license. 14 mod args; 15 mod into_app; 16 mod parser; 17 mod subcommand; 18 mod value_enum; 19 20 pub use self::parser::derive_parser; 21 pub use args::derive_args; 22 pub use subcommand::derive_subcommand; 23 pub use value_enum::derive_value_enum; 24