mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-26 07:12:16 +00:00
8 lines
93 B
Go
8 lines
93 B
Go
|
package binary
|
||
|
|
||
|
import "io"
|
||
|
|
||
|
type Binary interface {
|
||
|
WriteTo(io.Writer) (int64, error)
|
||
|
}
|