keycloak-demo/controllers/index.js

8 lines
135 B
JavaScript
Raw Normal View History

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