import { z } from "zod" import { Lang } from "@/constants/languages" export const langInput = z.object({ lang: z.nativeEnum(Lang), })