mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
8 lines
194 B
Lua
8 lines
194 B
Lua
-- 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;
|
|
}
|