kinaiok
Initial deployment setup for Hugging Face Spaces
5ef6e9d
raw
history blame contribute delete
288 Bytes
import { Router, type IRouter } from "express";
import { HealthCheckResponse } from "@workspace/api-zod";
const router: IRouter = Router();
router.get("/healthz", (_req, res) => {
const data = HealthCheckResponse.parse({ status: "ok" });
res.json(data);
});
export default router;