Codec implements the encoding.Encoder and encoding.Decoder interfaces for YAML encoding.
| 4 | |
| 5 | // Codec implements the encoding.Encoder and encoding.Decoder interfaces for YAML encoding. |
| 6 | type Codec struct{} |
| 7 | |
| 8 | func (Codec) Encode(v map[string]any) ([]byte, error) { |
| 9 | return yaml.Marshal(v) |
nothing calls this directly
no outgoing calls
no test coverage detected