aboutsummaryrefslogtreecommitdiff
path: root/examples/example-repl-basic/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/example-repl-basic/src/main.rs')
-rw-r--r--examples/example-repl-basic/src/main.rs6
1 files changed, 0 insertions, 6 deletions
diff --git a/examples/example-repl-basic/src/main.rs b/examples/example-repl-basic/src/main.rs
index 361488d..dc3d2fe 100644
--- a/examples/example-repl-basic/src/main.rs
+++ b/examples/example-repl-basic/src/main.rs
@@ -37,12 +37,6 @@ fn main() {
// Resource
program.with_resource(ResCurrentDir::default());
- // Dispatchers
- program.with_dispatcher(CMDCd);
- program.with_dispatcher(CMDLs);
- program.with_dispatcher(CMDExit);
- program.with_dispatcher(CMDClear);
-
// Setups
// Enable basic std::io::stdin().read_line(&mut input)
program.with_setup(BasicREPLReadlineSetup);