mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-10 23:10:59 +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
|
|
}
|