blob: f3706566feaaea7a0d87285ac14fb4b2cae3a8ab (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/// Provides the specific parsing logic for command-line arguments and common utilities,
/// as well as customization of command-line argument styles.
pub mod parselib {
pub use arg_picker::parselib::*;
}
pub use arg_picker::*;
mod entry_picker;
pub use entry_picker::*;
mod global;
pub use global::*;
|