summaryrefslogtreecommitdiff
path: root/cluster.proto
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-10-26 06:01:19 -0500
committerJeff Carr <[email protected]>2024-10-26 06:01:19 -0500
commitade54fdedac3bf89636f914b89fd17eaa972947f (patch)
treec1f00a440a436a3b0738b865d89a1a8c5e3a81f7 /cluster.proto
parenta8484013dc62bc0750f780b04b46cd48fe85ee5b (diff)
events should not be plural
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'cluster.proto')
-rw-r--r--cluster.proto8
1 files changed, 5 insertions, 3 deletions
diff --git a/cluster.proto b/cluster.proto
index 8631e43..0d07d5a 100644
--- a/cluster.proto
+++ b/cluster.proto
@@ -3,10 +3,12 @@ package virtbuf;
import "droplet.proto";
import "hypervisor.proto";
+import "event.proto";
message Cluster {
int64 id = 1;
- repeated Droplet droplets = 2;
- repeated Hypervisor hypervisors = 3;
- repeated string dirs = 4;
+ repeated string dirs = 2;
+ repeated Droplet droplets = 3;
+ repeated Hypervisor hypervisors = 4;
+ repeated Event events = 5;
}