Rename gerbil -> badger

This commit is contained in:
Owen Schwartz
2024-09-29 10:55:59 -04:00
parent 8a009f7fbc
commit 819a0ecb43
6 changed files with 9 additions and 9 deletions

View File

@@ -1,4 +1,6 @@
import { Router } from "express";
import { getConfig } from "./getConfig";
import { receiveBandwidth } from "./receiveBandwidth";
const gerbil = Router();
@@ -6,4 +8,7 @@ gerbil.get("/", (_, res) => {
res.status(200).json({ message: "Healthy" });
});
gerbil.get("/getConfig", getConfig);
gerbil.post("/receiveBandwidth", receiveBandwidth);
export default gerbil;