7 lines
171 B
TypeScript
7 lines
171 B
TypeScript
// @ts-nocheck
|
|
import { Router } from "express";
|
|
const router = Router();
|
|
// Get Routes
|
|
router.get("/healthz", (req, res) => res.sendStatus(200));
|
|
|
|
export default router;
|