Files
GMW/services/backend/src/modules/health/health.routes.ts
T

13 lines
299 B
TypeScript
Raw Normal View History

import type { Router } from "express";
import express from "express";
import { handleHealthCheck } from "./health.controller.js";
export function createHealthRouter(): Router {
const router = express.Router();
// GET /api/health
router.get("/health", handleHealthCheck);
return router;
}