mirror of
https://github.com/fosrl/pangolin.git
synced 2025-07-30 07:35:15 +02:00
12 lines
248 B
TypeScript
12 lines
248 B
TypeScript
import { Router } from "express";
|
|
import { getConfig } from "./getConfig";
|
|
|
|
const badger = Router();
|
|
|
|
badger.get("/", (_, res) => {
|
|
res.status(200).json({ message: "Healthy" });
|
|
});
|
|
|
|
badger.get("/getConfig", getConfig);
|
|
|
|
export default badger;
|