influxdb/command.go

13 lines
316 B
Go
Raw Normal View History

2013-04-14 21:37:33 +00:00
package raft
//------------------------------------------------------------------------------
//
// Typedefs
//
//------------------------------------------------------------------------------
// A command represents an action to be taken on the replicated state machine.
type Command interface {
Name() string
}