Working User Authorization Flow

This commit is contained in:
2026-01-26 15:56:10 -06:00
parent 8ee7dc15e5
commit 4524c0258a
8 changed files with 57 additions and 9 deletions
+7
View File
@@ -0,0 +1,7 @@
import { Hono } from "hono";
import * as authRoles from "../auth";
const authRouter = new Hono();
Object.values(authRoles).map((r) => authRouter.route("/", r));
export default authRouter;