2021-12-07 12:31:39 +00:00
|
|
|
package toml
|
|
|
|
|
|
|
|
import (
|
2023-01-23 09:24:00 +00:00
|
|
|
"github.com/pelletier/go-toml/v2"
|
2021-12-07 12:31:39 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Codec implements the encoding.Encoder and encoding.Decoder interfaces for TOML encoding.
|
|
|
|
type Codec struct{}
|
|
|
|
|
2024-01-17 14:54:30 +00:00
|
|
|
func (Codec) Encode(v map[string]any) ([]byte, error) {
|
2023-01-23 09:24:00 +00:00
|
|
|
return toml.Marshal(v)
|
2021-12-07 12:31:39 +00:00
|
|
|
}
|
|
|
|
|
2024-01-17 14:54:30 +00:00
|
|
|
func (Codec) Decode(b []byte, v map[string]any) error {
|
2023-01-23 09:24:00 +00:00
|
|
|
return toml.Unmarshal(b, &v)
|
2021-12-07 12:31:39 +00:00
|
|
|
}
|