From 74b5a80475e2230c0a494beac5ec86a985c2974f Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Thu, 21 May 2026 15:12:58 +0800 Subject: Refactor REPL hooks into modular setups and add new hook types --- mingling/src/setups.rs | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'mingling/src/setups.rs') diff --git a/mingling/src/setups.rs b/mingling/src/setups.rs index 351112b..b4fad58 100644 --- a/mingling/src/setups.rs +++ b/mingling/src/setups.rs @@ -9,3 +9,9 @@ mod general_renderer; #[cfg(feature = "general_renderer")] pub use general_renderer::*; + +#[cfg(feature = "repl")] +mod repl_basic; + +#[cfg(feature = "repl")] +pub use repl_basic::*; -- cgit