import { z } from 'zod';
import { KART_EFFECT } from './KartEffect.const';

export const kartEffectSchema = z.enum(KART_EFFECT);
