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/version.lua

18 lines
275 B
Lua

do
function run(msg, matches)
return 'Telegram Bot '.. VERSION .. [[
Checkout http://git.io/6jdjGg
GNU v2 license.]]
end
return {
description = "Shows bot version",
usage = "!version: Shows bot version",
patterns = {
"^!version$"
},
run = run
}
end