import type { Req, Res } from "as-facile-js"; import { HealthService } from "./health.service"; export class HealthController { static async check(req: Req, res: Res) { const data = await HealthService.check(); return res.json(data); } }