forked from lug/matterbridge
Update dependencies (#1813)
This commit is contained in:
19
vendor/github.com/spf13/viper/internal/encoding/toml/codec2.go
generated
vendored
Normal file
19
vendor/github.com/spf13/viper/internal/encoding/toml/codec2.go
generated
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
//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)
|
||||
}
|
||||
Reference in New Issue
Block a user