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