| 130 | } |
| 131 | |
| 132 | type internalRequest struct { |
| 133 | writer goHttp.ResponseWriter |
| 134 | request *goHttp.Request |
| 135 | } |
| 136 | |
| 137 | func (i *internalRequest) Decode(target interface{}) error { |
| 138 | bytes, err := io.ReadAll(i.request.Body) |
nothing calls this directly
no outgoing calls
no test coverage detected