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 /hypervisor.proto | |
| parent | 9bc90046d9ded6bfc6e84e4ced9bf693ee6af6fb (diff) | |
add hypervisor struct
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'hypervisor.proto')
| -rw-r--r-- | hypervisor.proto | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/hypervisor.proto b/hypervisor.proto new file mode 100644 index 0000000..aa2a9da --- /dev/null +++ b/hypervisor.proto @@ -0,0 +1,9 @@ +syntax = "proto3"; +package virtbuf; + +message Hypervisor { + string hostname = 1; + bool active = 2; + int64 cpus = 3; + int64 memory = 4; +} |
