mirror of
https://github.com/fosrl/pangolin.git
synced 2025-07-24 20:55:04 +02:00
14 lines
316 B
TypeScript
14 lines
316 B
TypeScript
import { Router } from "express";
|
|
import gerbil from "./gerbil/gerbil";
|
|
import pangolin from "./pangolin/pangolin";
|
|
|
|
const unauth = Router();
|
|
|
|
unauth.get("/", (_, res) => {
|
|
res.status(200).json({ message: "Healthy" });
|
|
});
|
|
|
|
unauth.use("/newt", gerbil);
|
|
unauth.use("/pangolin", pangolin);
|
|
|
|
export default unauth;
|