2
0
Files
2024-08-09 00:39:27 +02:00

9 lines
162 B
TypeScript

import { z } from "zod";
export const appKeysSchema = z.object({
api_key: z.string(),
api_route: z.string(),
});
export const appDataSchema = z.object({});