Files
wr.do/lib/validations/auth.ts
T
2024-07-26 22:08:57 +08:00

6 lines
99 B
TypeScript

import * as z from "zod"
export const userAuthSchema = z.object({
email: z.string().email(),
})