mirror of
https://github.com/spf13/viper
synced 2025-05-11 22:57:21 +00:00
feat(encoding): Add yaml codec
This commit is contained in:
parent
a2bfd19d10
commit
7616343807
1 changed files with 14 additions and 0 deletions
14
internal/encoding/yaml/codec.go
Normal file
14
internal/encoding/yaml/codec.go
Normal file
|
@ -0,0 +1,14 @@
|
|||
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 interface{}) error {
|
||||
return yaml.Unmarshal(b, v)
|
||||
}
|
Loading…
Add table
Reference in a new issue