diff options
Diffstat (limited to 'hypervisor.proto')
| -rw-r--r-- | hypervisor.proto | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/hypervisor.proto b/hypervisor.proto index 3d2d87d..7e9d6be 100644 --- a/hypervisor.proto +++ b/hypervisor.proto @@ -1,6 +1,12 @@ syntax = "proto3"; package virtbuf; +message Hypervisors { + string uuid = 1; // I guess why not just have this on each file + string version = 2; // maybe can be used for protobuf schema change violations + repeated Hypervisor hypervisors = 3; +} + message Hypervisor { string uuid = 1; string hostname = 2; |
