virtbuf/cluster.proto

10 lines
136 B
Protocol Buffer

syntax = "proto3";
package virtbuf;
import "droplet.proto";
message Cluster {
int64 id = 1;
repeated Droplet droplets = 2;
}