mirror of
https://github.com/fosrl/pangolin.git
synced 2026-03-02 00:36:38 +00:00
Add routes
This commit is contained in:
9
server/routers/pangolin/pangolin.ts
Normal file
9
server/routers/pangolin/pangolin.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import { Router } from "express";
|
||||
|
||||
const pangolin = Router();
|
||||
|
||||
pangolin.get("/", (_, res) => {
|
||||
res.status(200).json({ message: "Healthy" });
|
||||
});
|
||||
|
||||
export default pangolin;
|
||||
Reference in New Issue
Block a user