File

util/time.lua @ 8947:f12cc1d7aa65

prosodyctl: Warn if attempting to run an unknown check (fixes #1161)
author Kim Alvefur <zash@zash.se>
date Thu, 28 Jun 2018 10:56:24 +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;
}