File

util/time.lua @ 7858:14fe60a65c69

mod_storage_sql: Fix to use correct order for return values from transaction (thanks postblue)
author Kim Alvefur <zash@zash.se>
date Tue, 24 Jan 2017 19:26:40 +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;
}