mirror of
https://github.com/fosrl/pangolin.git
synced 2025-07-15 08:25:01 +02:00
9 lines
163 B
TypeScript
9 lines
163 B
TypeScript
import { Router } from "express";
|
|
|
|
const newt = Router();
|
|
|
|
newt.get("/", (_, res) => {
|
|
res.status(200).json({ message: "Healthy" });
|
|
});
|
|
|
|
export default newt;
|