aboutsummaryrefslogtreecommitdiffstats
path: root/packages/open-api/lib/errors.ts
blob: 326e0e9a95dc15202d7dccdae00b1c0820786c9d (plain) (blame)
1
2
3
4
5
6
import { z } from "zod";

export const ErrorSchema = z.object({
  code: z.string(),
  message: z.string(),
});