Ruben Vermeersch
Results
232
comments of
Ruben Vermeersch
trafficstars
> It seems that ogen calls `io.ReadAll` on the response body This doesn't seem to be the case anymore?
BTW, I think this can be implemented in a backwards compatible way (not break user code). ```go func encodeSomethingResponse(response SomethingOK, w http.ResponseWriter) error { w.Header().Set("Content-Type", "application/octet-stream") w.WriteHeader(200) writer := w...