19 lines
377 B
Protocol Buffer
19 lines
377 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package clusterpb;
|
|
import "gogoproto/gogo.proto";
|
|
|
|
option (gogoproto.marshaler_all) = true;
|
|
option (gogoproto.sizer_all) = true;
|
|
option (gogoproto.unmarshaler_all) = true;
|
|
option (gogoproto.goproto_getters_all) = false;
|
|
|
|
message Part {
|
|
string key = 1;
|
|
bytes data = 2;
|
|
}
|
|
|
|
message FullState {
|
|
repeated Part parts = 1 [(gogoproto.nullable) = false];
|
|
}
|