mirror of
https://github.com/fosrl/pangolin.git
synced 2025-07-24 12:44:59 +02:00
Add routes
This commit is contained in:
parent
0a27579acd
commit
8308df1f49
9 changed files with 45 additions and 0 deletions
9
server/routers/newt/newt.ts
Normal file
9
server/routers/newt/newt.ts
Normal file
|
@ -0,0 +1,9 @@
|
|||
import { Router } from "express";
|
||||
|
||||
const newt = Router();
|
||||
|
||||
newt.get("/", (_, res) => {
|
||||
res.status(200).json({ message: "Healthy" });
|
||||
});
|
||||
|
||||
export default newt;
|
Loading…
Add table
Add a link
Reference in a new issue