9 lines
131 B
Protocol Buffer
9 lines
131 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
package virtbuf;
|
||
|
|
||
|
message Cluster {
|
||
|
int64 id = 1;
|
||
|
repeated string s = 2;
|
||
|
repeated int i = 3;
|
||
|
}
|