mirror of
https://github.com/fosrl/pangolin.git
synced 2026-02-10 20:02:26 +00:00
10 lines
169 B
TypeScript
10 lines
169 B
TypeScript
import { Router } from "express";
|
|
|
|
const unauth = Router();
|
|
|
|
unauth.get("/", (_, res) => {
|
|
res.status(200).json({ message: "Healthy" });
|
|
});
|
|
|
|
export default unauth;
|