mirror of
https://github.com/fosrl/pangolin.git
synced 2026-02-21 20:36:37 +00:00
started integrating auth with lucia
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user