started integrating auth with lucia

This commit is contained in:
Milo Schwartz 2024-10-01 20:48:03 -04:00
parent a33a8d7367
commit fc5dca136f
No known key found for this signature in database
20 changed files with 1341 additions and 61 deletions

View file

@ -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;