2020-05-09 12:23:37 +02:00
|
|
|
package yaml
|
|
|
|
|
2025-04-08 10:19:47 -06:00
|
|
|
import yaml "sigs.k8s.io/yaml/goyaml.v3"
|
2020-05-09 12:23:37 +02:00
|
|
|
|
|
|
|
// Codec implements the encoding.Encoder and encoding.Decoder interfaces for YAML encoding.
|
|
|
|
type Codec struct{}
|
|
|
|
|
2023-09-26 17:59:38 +03:00
|
|
|
func (Codec) Encode(v map[string]any) ([]byte, error) {
|
2020-05-09 12:23:37 +02:00
|
|
|
return yaml.Marshal(v)
|
|
|
|
}
|
|
|
|
|
2023-09-26 17:59:38 +03:00
|
|
|
func (Codec) Decode(b []byte, v map[string]any) error {
|
2021-07-15 23:47:20 +02:00
|
|
|
return yaml.Unmarshal(b, &v)
|
2020-05-09 12:23:37 +02:00
|
|
|
}
|