mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-12-25 03:56:34 +00:00
11 lines
193 B
Go
11 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
|
||
|
}
|