diff options
Diffstat (limited to 'mingling/src/setups.rs')
| -rw-r--r-- | mingling/src/setups.rs | 31 |
1 files changed, 17 insertions, 14 deletions
diff --git a/mingling/src/setups.rs b/mingling/src/setups.rs index 3a3f13d..b2af90c 100644 --- a/mingling/src/setups.rs +++ b/mingling/src/setups.rs @@ -1,28 +1,31 @@ -// Doc Not Optimize +/// Picker's `ProgramSetup` variant. +/// +/// Internally does not use its own argument parsing, +/// but relies on `arg_picker`'s argument parsing capability. +#[cfg(feature = "picker")] +pub mod picker; + mod basic; pub use basic::*; +mod confirmer; +pub use confirmer::*; + mod dirs; pub use dirs::*; mod exit_code; pub use exit_code::*; -/// Picker's `ProgramSetup` variant. -/// -/// Internally does not use its own argument parsing, -/// but relies on `arg_picker`'s argument parsing capability. -#[cfg(feature = "picker")] -pub mod picker; +#[cfg(feature = "repl")] +mod repl_basic; +#[cfg(feature = "repl")] +pub use repl_basic::*; + +mod stdin_args; +pub use stdin_args::*; #[cfg(feature = "structural_renderer")] mod structural_renderer; - #[cfg(feature = "structural_renderer")] pub use structural_renderer::*; - -#[cfg(feature = "repl")] -mod repl_basic; - -#[cfg(feature = "repl")] -pub use repl_basic::*; |
