feat(encoding): Add yaml codec

This commit is contained in:
Mark Sagi-Kazar 2020-05-09 12:23:37 +02:00 committed by Márk Sági-Kazár
parent a00caae79f
commit 0e854bf27b

View 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)
}