mirror of
https://github.com/fosrl/pangolin.git
synced 2025-08-04 01:55:10 +02:00
Add scripts and fix routes
This commit is contained in:
parent
ac6a6d7616
commit
77d71de990
6 changed files with 91 additions and 13 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue