| 79 | } |
| 80 | |
| 81 | type Encoder struct { |
| 82 | w io.Writer |
| 83 | pathPrefix string |
| 84 | config EncoderConfig |
| 85 | } |
| 86 | |
| 87 | func NewEncoder(pathPrefix string, opts ...Option) func(w io.Writer) *Encoder { |
| 88 | cfg := EncoderConfig{} |
nothing calls this directly
no outgoing calls
no test coverage detected