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.
21 lines
353 B
21 lines
353 B
package json
|
|
|
|
import (
|
|
"encoding/xml"
|
|
"io"
|
|
|
|
"gitoa.ru/go-4devs/encoding"
|
|
)
|
|
|
|
var _ encoding.Decode = Decode
|
|
var _ encoding.Encode = Encode
|
|
|
|
// Decode from xml.
|
|
func Decode(r io.Reader, v interface{}) error {
|
|
return xml.NewDecoder(r).Decode(v)
|
|
}
|
|
|
|
// Encode to xml.
|
|
func Encode(w io.Writer, v interface{}) error {
|
|
return xml.NewEncoder(w).Encode(v)
|
|
}
|
|
|