import type { Middleware } from '#src/types/koa.js'; /** * Signifies that the API is available to serve requests. * * The workload hosting environment calls this endpoint to see if the container * is unhealthy and needs to be recycled. */ export const healthCheckHandler: Middleware = (ctx) => { ctx.state.skipRequestLogging = true; ctx.body = ''; };