mirror of
https://github.com/fosrl/pangolin.git
synced 2025-07-22 03:35:11 +02:00
started integrating auth with lucia
This commit is contained in:
parent
a33a8d7367
commit
fc5dca136f
20 changed files with 1341 additions and 61 deletions
|
@ -1,6 +1,7 @@
|
|||
import { Router } from "express";
|
||||
import gerbil from "./gerbil/gerbil";
|
||||
import pangolin from "./pangolin/pangolin";
|
||||
import global from "./global/global";
|
||||
|
||||
const unauth = Router();
|
||||
|
||||
|
@ -11,4 +12,6 @@ unauth.get("/", (_, res) => {
|
|||
unauth.use("/newt", gerbil);
|
||||
unauth.use("/pangolin", pangolin);
|
||||
|
||||
unauth.use("/", global)
|
||||
|
||||
export default unauth;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue