mirror of
https://github.com/fosrl/pangolin.git
synced 2026-06-04 06:46:49 +00:00
Agent-Logs-Url: https://github.com/fosrl/pangolin/sessions/7b395a8e-7fae-4f4d-952e-4030fea08262 Co-authored-by: oschwartz10612 <4999704+oschwartz10612@users.noreply.github.com>
12 lines
290 B
TypeScript
12 lines
290 B
TypeScript
import { z } from "zod";
|
|
|
|
export function createApiResponseSchema<T extends z.ZodTypeAny>(dataSchema: T) {
|
|
return z.object({
|
|
data: dataSchema.nullable(),
|
|
success: z.boolean(),
|
|
error: z.boolean(),
|
|
message: z.string(),
|
|
status: z.number()
|
|
});
|
|
}
|