From 8d79bf3a2eceafc2316f3eb78140995cbaf072f1 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sat, 18 Jul 2026 06:12:31 +0800 Subject: feat(setups): add picker module with flag-based program setup --- mingling/src/setups/picker.rs | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 mingling/src/setups/picker.rs (limited to 'mingling/src/setups/picker.rs') diff --git a/mingling/src/setups/picker.rs b/mingling/src/setups/picker.rs new file mode 100644 index 0000000..3c0d1c8 --- /dev/null +++ b/mingling/src/setups/picker.rs @@ -0,0 +1,10 @@ +mod basic; +pub use basic::*; + +#[cfg(feature = "structural_renderer")] +mod structural_renderer; +#[cfg(feature = "structural_renderer")] +pub use structural_renderer::*; + +mod consts; +pub use consts::*; -- cgit