openresty_module/lua/key_header.lua

6 lines
89 B
Lua
Raw Normal View History

2024-06-03 18:47:10 +02:00
local _M = {}
function _M.greet(name)
ngx.say("Greetings from ", name)
end
return _M