sher
Results
2
comments of
sher
Thanks @yusukebe Agree, that the hono API should be as thin as possible and delegate validation to whatever library user wants to use. Currently handlers can accept multiple request validation...
@yusukebe How about adding `response:*` keys to validators like this? ```ts const route = app.on( 'LIST_OF_USERS', '/users', validator('response:200', (value, c) => { const parsed = schema.safeParse(value); if (!parsed.success) { return...