2020-09-23 17:51:49 +03:00
|
|
|
package toml
|
|
|
|
|
|
|
|
import (
|
2023-01-19 17:15:44 +03:00
|
|
|
"github.com/pelletier/go-toml/v2"
|
2020-09-23 17:51:49 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
// Codec implements the encoding.Encoder and encoding.Decoder interfaces for TOML encoding.
|
|
|
|
type Codec struct{}
|
|
|
|
|
2021-07-16 01:26:30 +03:00
|
|
|
func (Codec) Encode(v map[string]interface{}) ([]byte, error) {
|
2023-01-19 17:15:44 +03:00
|
|
|
return toml.Marshal(v)
|
2020-09-23 17:51:49 +03:00
|
|
|
}
|
|
|
|
|
2021-07-16 00:47:20 +03:00
|
|
|
func (Codec) Decode(b []byte, v map[string]interface{}) error {
|
2023-01-19 17:15:44 +03:00
|
|
|
return toml.Unmarshal(b, &v)
|
2020-09-23 17:51:49 +03:00
|
|
|
}
|