mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-13 08:00:26 +00:00
4dd8bae5c9
* Update dependencies * Update module to go 1.17
15 lines
318 B
Go
15 lines
318 B
Go
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)
|
|
}
|