mirror of
https://github.com/fosrl/pangolin.git
synced 2025-07-09 21:44:51 +02: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;
|