view util/time.lua @ 9013:a54bcc76cd22

MUC: Remove room state on successful restoration from disk
author Kim Alvefur <zash@zash.se>
date Wed, 11 Jul 2018 03:27:18 +0200
parents 72e48bddf617
children
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;
}