aboutsummaryrefslogtreecommitdiff
path: root/mingling/src/picker.rs
blob: 66b9a3afed725dea4c5ba49ab7ef9080d71cb1d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Doc Not Optimize
/// 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::*;