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

11 lines
190 B
Lua

function run(msg, matches)
return os.date("%d.%m.%Y")
end
return {
description = "Zeigt das aktuelle Datum an",
usage = {"/date"},
patterns = {"^/date$"},
run = run
}