13 lines
177 B
Lua
13 lines
177 B
Lua
|
|
||
|
function run(msg, matches)
|
||
|
return matches[1]
|
||
|
end
|
||
|
|
||
|
return {
|
||
|
description = "echoes the msg",
|
||
|
usage = "echo [whatever]",
|
||
|
regexp = "^echo (.*)$",
|
||
|
run = run
|
||
|
}
|
||
|
|