2019-02-21 08:07:25 +00:00
|
|
|
//! Tools to create command line parsers
|
|
|
|
//!
|
|
|
|
//! We can use Schema deinititions to create command line parsers.
|
|
|
|
//!
|
|
|
|
//!
|
|
|
|
|
|
|
|
mod environment;
|
|
|
|
pub use environment::*;
|
|
|
|
|
2019-02-21 08:36:52 +00:00
|
|
|
mod getopts;
|
|
|
|
pub use getopts::*;
|
|
|
|
|
2019-02-21 08:07:25 +00:00
|
|
|
mod command;
|
|
|
|
pub use command::*;
|
|
|
|
|