9 lines
139 B
Go
9 lines
139 B
Go
|
package interfaces
|
||
|
|
||
|
import "github.com/vmihailenco/msgpack/v5"
|
||
|
|
||
|
type NodeVotes interface {
|
||
|
msgpack.CustomEncoder
|
||
|
msgpack.CustomDecoder
|
||
|
}
|