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