Initial commit

This commit is contained in:
Zoe
2026-08-07 22:13:25 -05:00
commit 8006fd67f3
40 changed files with 11017 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
import { defineEventHandler } from "h3";
import { isAuthenticated } from "../../utils/auth";
export default defineEventHandler((event) => ({
authenticated: isAuthenticated(event),
}));