tendermint/binary/binary.go

8 lines
93 B
Go

package binary
import "io"
type Binary interface {
WriteTo(io.Writer) (int64, error)
}