Codec implements the encoding.Encoder and encoding.Decoder interfaces for JSON encoding.
| 6 | |
| 7 | // Codec implements the encoding.Encoder and encoding.Decoder interfaces for JSON encoding. |
| 8 | type Codec struct{} |
| 9 | |
| 10 | func (Codec) Encode(v map[string]any) ([]byte, error) { |
| 11 | // TODO: expose prefix and indent in the Codec as setting? |
nothing calls this directly
no outgoing calls
no test coverage detected