keycloak-demo/controllers/index.js

8 lines
130 B
JavaScript

const controller = {}
module.exports = controller
controller.healthCheck = async ctx => {
ctx.body = 'ok'
ctx.status = 200
}