keycloak-demo/controllers/index.js

8 lines
130 B
JavaScript
Raw Normal View History

2021-09-01 12:46:41 +00:00
const controller = {}
module.exports = controller
2021-08-31 10:24:42 +00:00
controller.healthCheck = async ctx => {
2021-09-01 12:46:41 +00:00
ctx.body = 'ok'
ctx.status = 200
}