| 53 | ) |
| 54 | |
| 55 | type FormEncoder struct { |
| 56 | w io.Writer |
| 57 | pathPrefix string |
| 58 | config EncoderConfig |
| 59 | } |
| 60 | |
| 61 | func NewFormEncoder(pathPrefix string, opts ...Option) func(w io.Writer) *FormEncoder { |
| 62 | cfg := EncoderConfig{} |
nothing calls this directly
no outgoing calls
no test coverage detected