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