diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-05-09 17:37:37 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-05-09 17:37:37 +0800 |
| commit | 2eba732e17cf71dcf8a54b428a1c5e344582c2c2 (patch) | |
| tree | e04266109421a0255625490dc997dc0d55bbf64a /mingling_core/src/program/setup.rs | |
| parent | 10bc4ca7a4b3f14cfb57bf72a6da8aaa1490acf3 (diff) | |
Add exit code control and hook lifecycle features
Diffstat (limited to 'mingling_core/src/program/setup.rs')
| -rw-r--r-- | mingling_core/src/program/setup.rs | 4 |
1 files changed, 4 insertions, 0 deletions
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; |
