diff --git a/pkgs/@strootje/more/mod.api.ts b/pkgs/@strootje/more/mod.api.ts index 09245bb..1990301 100644 --- a/pkgs/@strootje/more/mod.api.ts +++ b/pkgs/@strootje/more/mod.api.ts @@ -30,6 +30,7 @@ export const reqres = ( ) => { return async (input: SS.InferInput): Promise> => { const result = await func(validateSync(schema.req, input)); + console.log("test", result); return validateSync(schema.res, await result.json()); }; };