openresty_module/lua/llib.lua

7 lines
85 B
Lua

local _M = {}
function _M.func(str)
ngx.say(str, " lua function")
end
return _M