1package yaml 2 3import "go.yaml.in/yaml/v3" 4 5// Codec implements the encoding.Encoder and encoding.Decoder interfaces for YAML encoding. 6type Codec struct{} 7 8func (Codec) Encode(v map[string]any) ([]byte, error) { 9 return yaml.Marshal(v) 10} 11 12func (Codec) Decode(b []byte, v map[string]any) error { 13 return yaml.Unmarshal(b, &v) 14} 15 16