diff options
| author | Jeff Carr <[email protected]> | 2024-10-22 03:26:02 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-10-22 03:26:02 -0500 |
| commit | c9c0abc440e15bb23f7569f7691232f9ab3baf0e (patch) | |
| tree | 8d580ddcea2c4e7f7ae36abaab0adc2d0c075830 /cluster.proto | |
| parent | 9bc90046d9ded6bfc6e84e4ced9bf693ee6af6fb (diff) | |
add hypervisor struct
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'cluster.proto')
| -rw-r--r-- | cluster.proto | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cluster.proto b/cluster.proto index d50af52..77ca62e 100644 --- a/cluster.proto +++ b/cluster.proto @@ -2,8 +2,10 @@ syntax = "proto3"; package virtbuf; import "droplet.proto"; +import "hypervisor.proto"; message Cluster { int64 id = 1; repeated Droplet droplets = 2; + repeated Hypervisor hypervisors = 3; } |
