spf13--viper/internal/encoding/yaml/codec.go

15 lines
325 B
Go
Raw Normal View History

2020-05-09 10:23:37 +00:00
package yaml
import "gopkg.in/yaml.v3"
2020-05-09 10:23:37 +00:00
// Codec implements the encoding.Encoder and encoding.Decoder interfaces for YAML encoding.
type Codec struct{}
2023-09-26 14:59:38 +00:00
func (Codec) Encode(v map[string]any) ([]byte, error) {
2020-05-09 10:23:37 +00:00
return yaml.Marshal(v)
}
2023-09-26 14:59:38 +00:00
func (Codec) Decode(b []byte, v map[string]any) error {
return yaml.Unmarshal(b, &v)
2020-05-09 10:23:37 +00:00
}