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