119625d8cSopenharmony_ci// Copyright 2018 Guillaume Pinot (@TeXitoi) <texitoi@texitoi.eu>, 219625d8cSopenharmony_ci// Kevin Knapp (@kbknapp) <kbknapp@gmail.com>, and 319625d8cSopenharmony_ci// Ana Hobden (@hoverbear) <operator@hoverbear.org> 419625d8cSopenharmony_ci// 519625d8cSopenharmony_ci// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or 619625d8cSopenharmony_ci// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license 719625d8cSopenharmony_ci// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your 819625d8cSopenharmony_ci// option. This file may not be copied, modified, or distributed 919625d8cSopenharmony_ci// except according to those terms. 1019625d8cSopenharmony_ci// 1119625d8cSopenharmony_ci// This work was derived from Structopt (https://github.com/TeXitoi/structopt) 1219625d8cSopenharmony_ci// commit#ea76fa1b1b273e65e3b0b1046643715b49bec51f which is licensed under the 1319625d8cSopenharmony_ci// MIT/Apache 2.0 license. 1419625d8cSopenharmony_cimod args; 1519625d8cSopenharmony_cimod into_app; 1619625d8cSopenharmony_cimod parser; 1719625d8cSopenharmony_cimod subcommand; 1819625d8cSopenharmony_cimod value_enum; 1919625d8cSopenharmony_ci 2019625d8cSopenharmony_cipub use self::parser::derive_parser; 2119625d8cSopenharmony_cipub use args::derive_args; 2219625d8cSopenharmony_cipub use subcommand::derive_subcommand; 2319625d8cSopenharmony_cipub use value_enum::derive_value_enum; 24