2021-10-16 15:47:22 -07:00
|
|
|
package toml
|
|
|
|
|
|
|
|
import (
|
2023-01-28 13:57:53 -08:00
|
|
|
"github.com/pelletier/go-toml/v2"
|
2021-10-16 15:47:22 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
// Codec implements the encoding.Encoder and encoding.Decoder interfaces for TOML encoding.
|
|
|
|
type Codec struct{}
|
|
|
|
|
2022-04-25 14:50:10 -07:00
|
|
|
func (Codec) Encode(v map[string]interface{}) ([]byte, error) {
|
2023-01-28 13:57:53 -08:00
|
|
|
return toml.Marshal(v)
|
2021-10-16 15:47:22 -07:00
|
|
|
}
|
|
|
|
|
2022-04-25 14:50:10 -07:00
|
|
|
func (Codec) Decode(b []byte, v map[string]interface{}) error {
|
2023-01-28 13:57:53 -08:00
|
|
|
return toml.Unmarshal(b, &v)
|
2021-10-16 15:47:22 -07:00
|
|
|
}
|