5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 23:56:57 +00:00
matterbridge/vendor/github.com/spf13/viper/internal/encoding/toml/codec2.go

20 lines
409 B
Go
Raw Normal View History

2022-06-11 21:07:42 +00:00
//go:build !viper_toml1
// +build !viper_toml1
2022-04-25 21:50:10 +00:00
package toml
import (
"github.com/pelletier/go-toml/v2"
)
// Codec implements the encoding.Encoder and encoding.Decoder interfaces for TOML encoding.
type Codec struct{}
func (Codec) Encode(v map[string]interface{}) ([]byte, error) {
return toml.Marshal(v)
}
func (Codec) Decode(b []byte, v map[string]interface{}) error {
return toml.Unmarshal(b, &v)
}