keycloak-demo/controllers/index.js
2021-09-01 15:20:53 +08:00

8 lines
135 B
JavaScript

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