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

17 lines
213 B
Lua

do
function run(msg, matches)
return 'Mikubot '.. VERSION ..' by Akamaru'
end
return {
description = "Zeigt die Bot Version",
usage = "/version",
patterns = {
"^/version$"
},
run = run
}
end