aboutsummaryrefslogtreecommitdiff
path: root/examples/example-exit-code/src/main.rs
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-05-16 16:24:55 +0800
committer魏曹先生 <1992414357@qq.com>2026-05-16 16:24:55 +0800
commita5647e89bc5110a07c8f3c695c3c9582aa31d354 (patch)
tree63c5be475c53b578c7ff5fe0d454899c0aa315b1 /examples/example-exit-code/src/main.rs
parentf7964129a5b5e41fd6da0f191a7e37e93bd36814 (diff)
Simplify example imports to use prelude and add resources example
Add a new example demonstrating global resource injection in chain functions, and update all existing examples to import from `mingling::prelude` instead of individual macro paths. Also add `example-resources` to the workspace exclude list.
Diffstat (limited to 'examples/example-exit-code/src/main.rs')
-rw-r--r--examples/example-exit-code/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/example-exit-code/src/main.rs b/examples/example-exit-code/src/main.rs
index 1fe5424..def96d8 100644
--- a/examples/example-exit-code/src/main.rs
+++ b/examples/example-exit-code/src/main.rs
@@ -11,8 +11,8 @@
//! cargo run --manifest-path ./examples/example-exit-code/Cargo.toml -- error
//! ```
+use mingling::prelude::*;
use mingling::{
- macros::{chain, dispatcher, gen_program, pack, r_println, renderer},
res::{exit_code, update_exit_code},
setup::ExitCodeSetup,
};