2020-05-09 13:23:37 +03:00
|
|
|
package yaml
|
|
|
|
|
2022-01-01 18:48:46 +03:00
|
|
|
// import "gopkg.in/yaml.v2"
|
2020-05-09 13:23:37 +03:00
|
|
|
|
|
|
|
// Codec implements the encoding.Encoder and encoding.Decoder interfaces for YAML encoding.
|
|
|
|
type Codec struct{}
|
|
|
|
|
2021-07-16 01:26:30 +03:00
|
|
|
func (Codec) Encode(v map[string]interface{}) ([]byte, error) {
|
2020-05-09 13:23:37 +03:00
|
|
|
return yaml.Marshal(v)
|
|
|
|
}
|
|
|
|
|
2021-07-16 00:47:20 +03:00
|
|
|
func (Codec) Decode(b []byte, v map[string]interface{}) error {
|
|
|
|
return yaml.Unmarshal(b, &v)
|
2020-05-09 13:23:37 +03:00
|
|
|
}
|