mirror of
https://github.com/go-micro/go-micro.git
synced 2024-12-18 08:26:38 +02:00
20 lines
303 B
Go
20 lines
303 B
Go
|
package json
|
||
|
|
||
|
import (
|
||
|
"encoding/json"
|
||
|
)
|
||
|
|
||
|
type Marshaler struct{}
|
||
|
|
||
|
func (j Marshaler) Marshal(v interface{}) ([]byte, error) {
|
||
|
return json.Marshal(v)
|
||
|
}
|
||
|
|
||
|
func (j Marshaler) Unmarshal(d []byte, v interface{}) error {
|
||
|
return json.Unmarshal(d, v)
|
||
|
}
|
||
|
|
||
|
func (j Marshaler) String() string {
|
||
|
return "json"
|
||
|
}
|