summaryrefslogtreecommitdiff
path: root/examples/simple_dispatcher.lua
diff options
context:
space:
mode:
Diffstat (limited to 'examples/simple_dispatcher.lua')
-rw-r--r--examples/simple_dispatcher.lua6
1 files changed, 0 insertions, 6 deletions
diff --git a/examples/simple_dispatcher.lua b/examples/simple_dispatcher.lua
deleted file mode 100644
index 4c935fe..0000000
--- a/examples/simple_dispatcher.lua
+++ /dev/null
@@ -1,6 +0,0 @@
-return {
- ["%w+%s*\n"] = function(match)
- local cmd = string.match("(%w+)%s*", match)
- command_queue:enqueue_command(cmd)
- end
-}