File

util/time.lua @ 7705:0a29a5e64f1d

mod_muc/muc.lib: Allow passing different <x> elements to be passed to :publicise_occupant_status()
author Kim Alvefur <zash@zash.se>
date Wed, 26 Oct 2016 13:06:08 +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;
}