File

util/time.lua @ 8111:3cbb311f8468

prosodyctl: cert import: Command to copy certificates into prosodys certificate directory (fixes #892)
author Kim Alvefur <zash@zash.se>
date Fri, 21 Apr 2017 15:11:25 +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;
}