9 lines
182 B
TypeScript
9 lines
182 B
TypeScript
|
import { z } from "zod";
|
||
|
|
||
|
export const appDataSchema = z.object({});
|
||
|
|
||
|
export const appKeysSchema = z.object({
|
||
|
client_id: z.string().min(1),
|
||
|
client_secret: z.string().min(1),
|
||
|
});
|