26 lines
413 B
Go
26 lines
413 B
Go
|
package json
|
||
|
|
||
|
import (
|
||
|
"encoding/json"
|
||
|
|
||
|
"github.com/micro/go-micro/config/encoder"
|
||
|
)
|
||
|
|
||
|
type jsonEncoder struct{}
|
||
|
|
||
|
func (j jsonEncoder) Encode(v interface{}) ([]byte, error) {
|
||
|
return json.Marshal(v)
|
||
|
}
|
||
|
|
||
|
func (j jsonEncoder) Decode(d []byte, v interface{}) error {
|
||
|
return json.Unmarshal(d, v)
|
||
|
}
|
||
|
|
||
|
func (j jsonEncoder) String() string {
|
||
|
return "json"
|
||
|
}
|
||
|
|
||
|
func NewEncoder() encoder.Encoder {
|
||
|
return jsonEncoder{}
|
||
|
}
|