Vishal Singh
Results
1
issues of
Vishal Singh
This is my indexWithZod.ts file: ``` import express from 'express'; import { z } from 'zod'; export const appWithZod = express(); appWithZod.use(express.json()); const sumInput = z.object({ a: z.number(), b: z.number()...
question