13 lines
316 B
Go
13 lines
316 B
Go
|
package raft
|
||
|
|
||
|
//------------------------------------------------------------------------------
|
||
|
//
|
||
|
// Typedefs
|
||
|
//
|
||
|
//------------------------------------------------------------------------------
|
||
|
|
||
|
// A command represents an action to be taken on the replicated state machine.
|
||
|
type Command interface {
|
||
|
Name() string
|
||
|
}
|