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