summaryrefslogtreecommitdiff
path: root/droplet.proto
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-10-24 16:57:50 -0500
committerJeff Carr <[email protected]>2024-10-24 16:57:50 -0500
commit87b7bc17b313c04806981408943923d8e66f960a (patch)
tree2124e618a2dd06fc0aefa6b4a3a1d449e504bf8a /droplet.proto
parentdac27e31b5cdf7f9aa382cd342dcfa79423a0f69 (diff)
seperate config files for droplets, hypervisors & events
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'droplet.proto')
-rw-r--r--droplet.proto4
1 files changed, 3 insertions, 1 deletions
diff --git a/droplet.proto b/droplet.proto
index 9dbba2c..60af988 100644
--- a/droplet.proto
+++ b/droplet.proto
@@ -4,7 +4,9 @@ package virtbuf;
import "google/protobuf/any.proto";
message Droplets {
- repeated Droplet droplets = 1;
+ 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 Droplet droplets = 3;
}
message Droplet {