aboutsummaryrefslogtreecommitdiff
path: root/examples/example-lazy-resources/src
diff options
context:
space:
mode:
Diffstat (limited to 'examples/example-lazy-resources/src')
-rw-r--r--examples/example-lazy-resources/src/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/example-lazy-resources/src/main.rs b/examples/example-lazy-resources/src/main.rs
index 199608e..cc1604a 100644
--- a/examples/example-lazy-resources/src/main.rs
+++ b/examples/example-lazy-resources/src/main.rs
@@ -49,8 +49,8 @@ fn init_res_large_data() -> ResLargeData {
ResLargeData { data }
}
-dispatcher!("show", CMDShow => EntryShow);
-dispatcher!("none", CMDNone => EntryNone);
+dispatcher!("show", EntryShow);
+dispatcher!("none", EntryNone);
pack!(ResultShow = BTreeMap<Key, Value>);