aboutsummaryrefslogtreecommitdiff
path: root/mingling/src/setups/picker.rs
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-07-18 06:12:31 +0800
committer魏曹先生 <1992414357@qq.com>2026-07-18 06:12:31 +0800
commit8d79bf3a2eceafc2316f3eb78140995cbaf072f1 (patch)
tree742688e97b4ab0081dd0792fcefd355187c8669b /mingling/src/setups/picker.rs
parent92127d6c2929057eb909427b96d4ff4abd566dd0 (diff)
feat(setups): add picker module with flag-based program setup
Diffstat (limited to 'mingling/src/setups/picker.rs')
-rw-r--r--mingling/src/setups/picker.rs10
1 files changed, 10 insertions, 0 deletions
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::*;