first commit

This commit is contained in:
2026-04-14 19:44:21 -05:00
commit 068576cf4b
36 changed files with 13680 additions and 0 deletions

17
server/types/auth.ts Normal file
View File

@@ -0,0 +1,17 @@
export interface AuthContext {
id: string
token: string
}
export interface AccessTokenClaims {
sub: string
iss: string
aud: string
iat: number
exp: number
}
export interface AuthRouteRequirement {
method: string
path: string
}