mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-27 03:58:06 +00:00
10 lines
193 B
Go
10 lines
193 B
Go
package payload
|
|
|
|
import "io"
|
|
|
|
// Payload is anything that can be binary encoded/decoded.
|
|
type Payload interface {
|
|
EncodeBinary(io.Writer) error
|
|
DecodeBinary(io.Reader) error
|
|
Size() uint32
|
|
}
|