aboutsummaryrefslogtreecommitdiff
path: root/examples/example-basic
diff options
context:
space:
mode:
Diffstat (limited to 'examples/example-basic')
-rw-r--r--examples/example-basic/src/main.rs5
1 files changed, 1 insertions, 4 deletions
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);