2
0
Files
cal/calcom/packages/app-store/webex/zod.ts

9 lines
184 B
TypeScript
Raw Normal View History

2024-08-09 00:39:27 +02:00
import { z } from "zod";
export const appDataSchema = z.object({});
export const appKeysSchema = z.object({
client_id: z.string().min(64),
client_secret: z.string().min(64),
});