add round creation

This commit is contained in:
unurled 2025-07-06 14:56:26 +02:00
parent 9cc0ac3089
commit 764d0c0526
25 changed files with 356 additions and 27 deletions

View file

@ -0,0 +1,7 @@
import z from 'zod';
export const formSchema = z.object({
scheduling_mode: z.nativeEnum(SchedulingMode)
});
export type FormSchema = typeof formSchema;