From 2eba732e17cf71dcf8a54b428a1c5e344582c2c2 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sat, 9 May 2026 17:37:37 +0800 Subject: Add exit code control and hook lifecycle features --- mingling_core/src/program/setup.rs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'mingling_core/src/program/setup.rs') diff --git a/mingling_core/src/program/setup.rs b/mingling_core/src/program/setup.rs index 28aa49b..289dfee 100644 --- a/mingling_core/src/program/setup.rs +++ b/mingling_core/src/program/setup.rs @@ -3,6 +3,10 @@ use crate::{ProgramCollect, program::Program}; mod basic; pub use basic::*; +#[doc(hidden)] +pub mod exit_code_control; +pub use exit_code_control::ExitCodeSetup; + #[cfg(feature = "general_renderer")] mod general_renderer; -- cgit