openresty_module/lua/llib.lua

7 lines
85 B
Lua
Raw Permalink Normal View History

2024-06-04 14:16:36 +02:00
local _M = {}
function _M.func(str)
ngx.say(str, " lua function")
end
return _M