Files
etcd/third_party/github.com/benbjohnson/go-raft/protobuf/log_entry.proto

8 lines
173 B
Protocol Buffer

package protobuf;
message ProtoLogEntry {
required uint64 Index=1;
required uint64 Term=2;
required string CommandName=3;
optional bytes Command=4; // for nop-command
}