From 930fa5328c96eff49e1ffa94775c43235f42a4f7 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Mon, 27 Apr 2026 13:56:04 +0800 Subject: Remove unused `ChainProcess` import in examples --- examples/example-basic/src/main.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'examples/example-basic/src/main.rs') diff --git a/examples/example-basic/src/main.rs b/examples/example-basic/src/main.rs index a91154a..944a914 100644 --- a/examples/example-basic/src/main.rs +++ b/examples/example-basic/src/main.rs @@ -5,10 +5,7 @@ //! cargo run --manifest-path ./examples/example-basic/Cargo.toml -- hello World //! ``` -use mingling::{ - ChainProcess, - macros::{chain, dispatcher, gen_program, pack, r_println, renderer}, -}; +use mingling::macros::{chain, dispatcher, gen_program, pack, r_println, renderer}; // Define dispatcher `HelloCommand`, directing subcommand "hello" to `HelloEntry` dispatcher!("hello", HelloCommand => HelloEntry); -- cgit