mirror of
https://github.com/spf13/viper
synced 2024-11-05 12:47:01 +00:00
14 lines
325 B
Go
14 lines
325 B
Go
package yaml
|
|
|
|
import "gopkg.in/yaml.v3"
|
|
|
|
// Codec implements the encoding.Encoder and encoding.Decoder interfaces for YAML encoding.
|
|
type Codec struct{}
|
|
|
|
func (Codec) Encode(v map[string]any) ([]byte, error) {
|
|
return yaml.Marshal(v)
|
|
}
|
|
|
|
func (Codec) Decode(b []byte, v map[string]any) error {
|
|
return yaml.Unmarshal(b, &v)
|
|
}
|