diff options
| author | Jeff Carr <[email protected]> | 2024-10-26 06:01:19 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-10-26 06:01:19 -0500 |
| commit | ade54fdedac3bf89636f914b89fd17eaa972947f (patch) | |
| tree | c1f00a440a436a3b0738b865d89a1a8c5e3a81f7 /cluster.proto | |
| parent | a8484013dc62bc0750f780b04b46cd48fe85ee5b (diff) | |
events should not be plural
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'cluster.proto')
| -rw-r--r-- | cluster.proto | 8 |
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; } |
