This repository has been archived on 2021-04-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Mikubot/plugins/echo.lua
2014-11-04 16:09:08 +01:00

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
}