summaryrefslogtreecommitdiff
path: root/examples/simple_dispatcher.lua
blob: 5a931e382cbb8150151a39fd20f6a81e3a39b59b (plain) (blame)
1
2
3
4
5
6
return {
   ["%w+%s*"] = function(match)
		   local cmd = string.match("(%w+)%s*", match)
		   command_queue:enqueue_command(cmd)
		end
}