Initial release

This commit is contained in:
2025-11-23 20:42:56 +01:00
commit 721217a8e3
130 changed files with 7099 additions and 0 deletions
@@ -0,0 +1,8 @@
import { z } from "zod"
export const updateUserSchema = z.object({
name: z.string().min(2, "Name must be at least 2 characters long"),
email: z.email().optional(),
})
export type UpdateUserInputs = z.infer<typeof updateUserSchema>