mirror of
https://github.com/github/codeql-action.git
synced 2025-12-28 10:10:17 +08:00
8 lines
150 B
Lua
8 lines
150 B
Lua
redis.replicate_commands()
|
|
|
|
local get_time = function ()
|
|
local time = redis.call('time')
|
|
|
|
return tonumber(time[1]..string.sub(time[2], 1, 3))
|
|
end
|