2020-09-23 14:39:41 +00:00
|
|
|
package json
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Codec implements the encoding.Encoder and encoding.Decoder interfaces for JSON encoding.
|
|
|
|
type Codec struct{}
|
|
|
|
|
2021-07-15 22:26:30 +00:00
|
|
|
func (Codec) Encode(v map[string]interface{}) ([]byte, error) {
|
2020-09-23 14:39:41 +00:00
|
|
|
// TODO: expose prefix and indent in the Codec as setting?
|
|
|
|
return json.MarshalIndent(v, "", " ")
|
|
|
|
}
|
|
|
|
|
2021-07-15 21:47:20 +00:00
|
|
|
func (Codec) Decode(b []byte, v map[string]interface{}) error {
|
|
|
|
return json.Unmarshal(b, &v)
|
2020-09-23 14:39:41 +00:00
|
|
|
}
|