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

19 lines
280 B
Lua
Raw Normal View History

do
2014-11-04 16:09:08 +01:00
function run(msg, matches)
2014-11-22 16:02:43 +01:00
return 'Telegram Bot '.. VERSION .. [[
Checkout http://git.io/6jdjGg
2015-04-11 18:32:07 +02:00
GNU GPL v2 license.]]
2014-11-04 16:09:08 +01:00
end
return {
description = "Shows bot version",
usage = "!version: Shows bot version",
patterns = {
"^!version$"
},
run = run
2014-11-04 16:09:08 +01:00
}
2015-04-11 18:32:07 +02:00
end