mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-12 08:45:38 +02:00
9 lines
213 B
TypeScript
9 lines
213 B
TypeScript
import { z } from "zod"
|
|
import { createSubjects } from "@openauthjs/openauth/subject"
|
|
|
|
export const subjects = createSubjects({
|
|
user: z.object({
|
|
email: z.string(),
|
|
userID: z.string(),
|
|
})
|
|
}) |