Decoder provides the actual decoding algorithm used to load HTTP request and response bodies.
| 32 | // Decoder provides the actual decoding algorithm used to load HTTP |
| 33 | // request and response bodies. |
| 34 | Decoder interface { |
| 35 | // Decode decodes into v. |
| 36 | Decode(v any) error |
| 37 | } |
| 38 | |
| 39 | // Encoder provides the actual encoding algorithm used to write HTTP |
| 40 | // request and response bodies. |
no outgoing calls
no test coverage detected