Files
kong--kong/spec/fixtures/custom_plugins/kong/plugins/admin-api-method/status_api.lua
T
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,
},
}