File

util/time.lua @ 9160:e13a1a0b0107

mod_pep, util.pubsub: Rename restricted->outcast, none->member and add new 'none' affiliation to better match XEP-0060
author Matthew Wild <mwild1@gmail.com>
date Wed, 08 Aug 2018 23:20:07 +0100
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;
}