diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-05-21 15:12:58 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-05-21 15:21:37 +0800 |
| commit | 74b5a80475e2230c0a494beac5ec86a985c2974f (patch) | |
| tree | 18892e7b6c0a0c6b4a3ac65fb497d7a55d5ae16f /mingling/src/setups.rs | |
| parent | 4704f6d54108bcc8f9b2fb7f4b3c4e224b4a7809 (diff) | |
Refactor REPL hooks into modular setups and add new hook types
Diffstat (limited to 'mingling/src/setups.rs')
| -rw-r--r-- | mingling/src/setups.rs | 6 |
1 files changed, 6 insertions, 0 deletions
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::*; |
