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