import { z } from "zod"; export function createApiResponseSchema(dataSchema: T) { return z.object({ data: dataSchema.nullable(), success: z.boolean(), error: z.boolean(), message: z.string(), status: z.number() }); }