15 lines
231 B
Rust
15 lines
231 B
Rust
|
//! Tools to create command line parsers
|
||
|
//!
|
||
|
//! We can use Schema deinititions to create command line parsers.
|
||
|
//!
|
||
|
//!
|
||
|
|
||
|
mod environment;
|
||
|
pub use environment::*;
|
||
|
|
||
|
mod command;
|
||
|
pub use command::*;
|
||
|
|
||
|
mod getopts;
|
||
|
pub use getopts::*;
|