You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
318 B
19 lines
318 B
package json
|
|
|
|
import (
|
|
"encoding/json"
|
|
"io"
|
|
|
|
"gitoa.ru/go-4devs/encoding"
|
|
)
|
|
|
|
var _ encoding.Decode = Decode
|
|
var _ encoding.Encode = Encode
|
|
|
|
func Decode(r io.Reader, v interface{}) error {
|
|
return json.NewDecoder(r).Decode(v)
|
|
}
|
|
|
|
func Encode(w io.Writer, v interface{}) error {
|
|
return json.NewEncoder(w).Encode(v)
|
|
}
|
|
|