mirror of
https://github.com/fluencelabs/tendermint
synced 2025-05-07 20:42:14 +00:00
13 lines
128 B
Go
13 lines
128 B
Go
package peer
|
|
|
|
import (
|
|
"io"
|
|
|
|
. "github.com/tendermint/tendermint/binary"
|
|
)
|
|
|
|
type Message interface {
|
|
Binary
|
|
Type() string
|
|
}
|