Encoder is an interface implemented by any type that wishes to encode itself into URL values in a non-standard way.
| 36 | // Encoder is an interface implemented by any type that wishes to encode |
| 37 | // itself into URL values in a non-standard way. |
| 38 | type Encoder interface { |
| 39 | EncodeValues(key string, v *url.Values) error |
| 40 | } |
| 41 | |
| 42 | // Values returns the url.Values encoding of v. |
| 43 | // |
no outgoing calls
no test coverage detected
searching dependent graphs…