Files
resty_functions/scripts/lib/my_uuid.lua
T
2023-11-06 01:42:22 +08:00

12 lines
221 B
Lua

local _M = {}
function _M.uuid()
local uuid_cmd = "/usr/bin/uuid"
local handle = io.popen(uuid_cmd)
local result = handle:read("*a")
ngx.log(ngx.INFO, "uuid -> ", result)
return result
end
return _M