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

15 lines
232 B
Lua

function run(msg, matches)
local receiver = get_receiver(msg)
print('receiver: '..receiver)
return "pong"
end
return {
description = "bot sends pong",
usage = "ping",
regexp = "^ping$",
run = run
}