File

util/time.lua @ 8832:a9c3b15b9d37

mod_muc_mam: Set status code 170/171 on archiving configuration change
author Kim Alvefur <zash@zash.se>
date Tue, 29 May 2018 04:24:43 +0200
parent 7461:72e48bddf617
line wrap: on
line source

-- Import gettime() from LuaSocket, as a way to access high-resolution time
-- in a platform-independent way

local socket_gettime = require "socket".gettime;

return {
	now = socket_gettime;
}