5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-21 05:46:57 +00:00
matterbridge/vendor/github.com/spf13/viper/internal/encoding/toml/codec2.go
2022-04-25 23:50:10 +02:00

20 lines
407 B
Go

//go:build viper_toml2
// +build viper_toml2
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)
}