© 2026 Hedgehog Software, LLC
const route = app.post( '/posts', zValidator( 'form', z.object({ body: z.string(), }) ), (c) => { // ... return { .. } } )