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