virtbuf/cluster.proto

13 lines
235 B
Protocol Buffer

syntax = "proto3";
package virtbuf;
import "droplet.proto";
import "hypervisor.proto";
message Cluster {
int64 id = 1;
repeated Droplet droplets = 2;
repeated Hypervisor hypervisors = 3;
repeated string dirs = 4;
}