mirror of
https://github.com/pyihe/go-pkg.git
synced 2025-10-05 16:06:58 +08:00
7 lines
130 B
Go
7 lines
130 B
Go
package serialize
|
|
|
|
type Serializer interface {
|
|
Encode(v interface{}) ([]byte, error)
|
|
Decode(data []byte, v interface{}) error
|
|
}
|