2021-12-07 12:31:39 +00:00
|
|
|
package yaml
|
|
|
|
|
2022-05-02 13:05:18 +00:00
|
|
|
// import "gopkg.in/yaml.v2"
|
2021-12-07 12:31:39 +00:00
|
|
|
|
|
|
|
// Codec implements the encoding.Encoder and encoding.Decoder interfaces for YAML encoding.
|
|
|
|
type Codec struct{}
|
|
|
|
|
2022-05-02 13:05:18 +00:00
|
|
|
func (Codec) Encode(v map[string]interface{}) ([]byte, error) {
|
2021-12-07 12:31:39 +00:00
|
|
|
return yaml.Marshal(v)
|
|
|
|
}
|
|
|
|
|
2022-05-02 13:05:18 +00:00
|
|
|
func (Codec) Decode(b []byte, v map[string]interface{}) error {
|
|
|
|
return yaml.Unmarshal(b, &v)
|
2021-12-07 12:31:39 +00:00
|
|
|
}
|