mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util.time: New tiny library to abstract LuaSocket's gettime() function, so we can use other sources in the future
This commit is contained in:
parent
03e138c59a
commit
6fc4ad3aef
1 changed files with 8 additions and 0 deletions
8
util/time.lua
Normal file
8
util/time.lua
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
-- 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;
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue