From 81635b93c597b10282cb14e0873f5e3d22395186 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sat, 6 Jun 2026 23:16:51 +0800 Subject: Rename `ExitCode` to `ResExitCode` and `REPL` to `ResREPL` --- mingling_core/src/program.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'mingling_core/src/program.rs') diff --git a/mingling_core/src/program.rs b/mingling_core/src/program.rs index 2e861e4..096f292 100644 --- a/mingling_core/src/program.rs +++ b/mingling_core/src/program.rs @@ -25,9 +25,8 @@ pub use collection::*; mod once_exec; #[cfg(feature = "repl")] -mod repl_exec; -#[cfg(feature = "repl")] -pub use repl_exec::res::REPL; +#[doc(hidden)] +pub mod repl_exec; mod single_instance; pub use single_instance::*; -- cgit