mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-26 19:42:23 +00:00
f000b76879
* [FIX] Formatting and code-style - gofmt - import resort - prealloc slices - simplify code * fix vet
9 lines
178 B
Go
9 lines
178 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
|
|
}
|