import { z } from "zod"

export const UpdateShopSchema = z.object({
    name: z.string().min(2)
})

export type UpdateShopInput = z.infer<typeof UpdateShopSchema>