mirror of
https://github.com/versia-pub/server.git
synced 2025-12-07 00:48:18 +01:00
7 lines
189 B
TypeScript
7 lines
189 B
TypeScript
import { z } from "@hono/zod-openapi";
|
|
import ISO6391 from "iso-639-1";
|
|
|
|
export const Id = z.string().uuid();
|
|
|
|
export const iso631 = z.enum(ISO6391.getAllCodes() as [string, ...string[]]);
|