view mod_log_mark/mod_log_mark.lua @ 5527:5268049915d8

mod_rest: Apply normalization to openapi spec Using https://github.com/mikefarah/yq v4.34.1 --prettyPrint
author Kim Alvefur <zash@zash.se>
date Wed, 07 Jun 2023 15:52:02 +0200
parents 7be158b3376f
children
line wrap: on
line source

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);