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

15 lines
330 B
Go
Raw Normal View History

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