Files
2026-07-13 12:32:21 +08:00

8 lines
123 B
Lua

return {
["/hello"] = {
GET = function()
kong.response.exit(200, { hello = "from status api" })
end,
},
}