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

13 lines
242 B
Lua

function run(msg, matches)
if string.starts(msg.text, "/nau") then
send_photo(get_receiver(msg), "pictures/nau.jpg", ok_cb, false)
end
end
return {
description = "RTL Nau",
usage = "/nau",
patterns = {"^/nau"},
run = run
}