koa-template/controller/index.js

8 lines
138 B
JavaScript

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