Files
medassist-ng/backend/src/routes/health.ts
T
2025-12-19 13:09:53 +01:00

6 lines
159 B
TypeScript

import { FastifyInstance } from "fastify";
export async function healthRoutes(app: FastifyInstance) {
app.get("/health", async () => ({ status: "ok" }));
}