mirror of
https://github.com/fergalmoran/kidarr-server.git
synced 2026-01-03 15:24:08 +00:00
6 lines
100 B
TypeScript
6 lines
100 B
TypeScript
import * as z from 'zod';
|
|
|
|
export const newChildSchema = z.object({
|
|
name: z.string().max(50),
|
|
});
|