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