mirror of
https://github.com/fosrl/pangolin.git
synced 2026-03-04 17:56:38 +00:00
Add scripts and fix routes
This commit is contained in:
@@ -1,7 +1,5 @@
|
||||
import { Router } from "express";
|
||||
import badger from "./badger/badger";
|
||||
import gerbil from "./gerbil/gerbil";
|
||||
import newt from "./newt/newt";
|
||||
import pangolin from "./pangolin/pangolin";
|
||||
|
||||
const unauth = Router();
|
||||
@@ -11,6 +9,6 @@ unauth.get("/", (_, res) => {
|
||||
});
|
||||
|
||||
unauth.use("/newt", badger);
|
||||
unauth.use("/pangolin", badger);
|
||||
unauth.use("/pangolin", pangolin);
|
||||
|
||||
export default unauth;
|
||||
|
||||
Reference in New Issue
Block a user