mirror of
https://github.com/fosrl/pangolin.git
synced 2026-02-25 14:26:39 +00:00
Rename gerbil -> badger
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import { Router } from "express";
|
||||
import badger from "./badger/badger";
|
||||
import gerbil from "./gerbil/gerbil";
|
||||
import pangolin from "./pangolin/pangolin";
|
||||
|
||||
const unauth = Router();
|
||||
@@ -8,7 +8,7 @@ unauth.get("/", (_, res) => {
|
||||
res.status(200).json({ message: "Healthy" });
|
||||
});
|
||||
|
||||
unauth.use("/newt", badger);
|
||||
unauth.use("/newt", gerbil);
|
||||
unauth.use("/pangolin", pangolin);
|
||||
|
||||
export default unauth;
|
||||
|
||||
Reference in New Issue
Block a user