mod_log_mark/mod_log_mark.lua
author Kim Alvefur <zash@zash.se>
Wed, 24 Aug 2022 11:37:00 +0200
changeset 5015 55cf7f063af6
parent 2178 7be158b3376f
permissions -rw-r--r--
mod_muc_bot/README: Update to account for 0.12 going stable

module:set_global();

local log = _G.log;

module:add_timer(60-os.date("%S"), function (now)
	log("info", "-- MARK --");
	return 90 - ((now + 30) % 60);
end);