5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2025-01-02 19:25:39 +00:00
matterbridge/vendor/github.com/spf13/viper/internal/encoding/toml/codec.go

17 lines
345 B
Go
Raw Normal View History

package toml
import (
2023-01-28 21:57:53 +00:00
"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]any) ([]byte, error) {
2023-01-28 21:57:53 +00:00
return toml.Marshal(v)
}
func (Codec) Decode(b []byte, v map[string]any) error {
2023-01-28 21:57:53 +00:00
return toml.Unmarshal(b, &v)
}