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