diff options
| author | Jeff Carr <[email protected]> | 2024-10-30 18:10:40 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-10-30 18:10:40 -0500 |
| commit | 18053caca8605895c0e6e2f8555c1ffa642a076a (patch) | |
| tree | e8ae67fce227621973c5137b6b59cbdd21589def /cluster.proto | |
| parent | 9608bb680f4679d16985f34d227f1bcf8a0d6c87 (diff) | |
events are in cluster.E
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'cluster.proto')
| -rw-r--r-- | cluster.proto | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/cluster.proto b/cluster.proto index 0d07d5a..0c2616d 100644 --- a/cluster.proto +++ b/cluster.proto @@ -8,7 +8,12 @@ import "event.proto"; message Cluster { int64 id = 1; repeated string dirs = 2; + repeated Droplet droplets = 3; repeated Hypervisor hypervisors = 4; - repeated Event events = 5; + // repeated Event events = 5; + + Droplets d = 6; + Hypervisors h = 7; + Events e = 8; } |
