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