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
2014-11-22 16:02:43 +01:00

15 lines
250 B
Lua

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