mirror of
https://github.com/fosrl/pangolin.git
synced 2025-08-01 08:34:53 +02:00
Rename
This commit is contained in:
parent
819a0ecb43
commit
8c9d19f6cd
4 changed files with 58 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
|||
import { Router } from "express";
|
||||
import gerbil from "./gerbil/gerbil";
|
||||
import gerbil from "./badger/badger";
|
||||
import badger from "./badger/badger";
|
||||
import { traefikConfigProvider } from "@server/traefik-config-provider";
|
||||
|
||||
const unauth = Router();
|
||||
|
@ -9,7 +9,7 @@ unauth.get("/", (_, res) => {
|
|||
res.status(200).json({ message: "Healthy" });
|
||||
});
|
||||
|
||||
unauth.use("/badger", gerbil);
|
||||
unauth.use("/badger", badger);
|
||||
unauth.use("/gerbil", gerbil);
|
||||
|
||||
unauth.get("/traefik-config-provider", traefikConfigProvider);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue