summaryrefslogtreecommitdiff
path: root/cluster.proto
blob: 8631e430edd1a2e4a48c72bb22d6f0592190a8dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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;
}