import { z } from "zod";

export const categoryParamsSchema = z.object({
  id: z.string().uuid()
});

export const categoryBodySchema = z.object({
  name: z.string().min(2).max(120)
});
