This commit is contained in:
xCyanGrizzly
2026-02-18 14:26:36 +01:00
commit 3a5726e82b
167 changed files with 104081 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
import { z } from "zod/v4";
export const locationSchema = z.object({
name: z.string().min(1, "Name is required").max(64),
description: z.string().max(256).optional(),
});
export type LocationInput = z.infer<typeof locationSchema>;