2022-05-26 18:30:14 +03:00
|
|
|
//go:build !viper_toml1
|
|
|
|
// +build !viper_toml1
|
2022-01-01 20:33:39 +03: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)
|
|
|
|
}
|