aboutsummaryrefslogtreecommitdiff
path: root/mingling/src/setups.rs
diff options
context:
space:
mode:
Diffstat (limited to 'mingling/src/setups.rs')
-rw-r--r--mingling/src/setups.rs34
1 files changed, 20 insertions, 14 deletions
diff --git a/mingling/src/setups.rs b/mingling/src/setups.rs
index 3a3f13d..7a523cc 100644
--- a/mingling/src/setups.rs
+++ b/mingling/src/setups.rs
@@ -1,28 +1,34 @@
-// 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 = "structural_renderer")]
-mod structural_renderer;
-
-#[cfg(feature = "structural_renderer")]
-pub use structural_renderer::*;
+mod osc94;
+pub use osc94::*;
#[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::*;