summaryrefslogtreecommitdiff
path: root/cluster.proto
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-10-22 02:51:45 -0500
committerJeff Carr <[email protected]>2024-10-22 02:51:45 -0500
commitbcc97a550a70305f9182b452ef650789c2fa2b45 (patch)
treea8d4460d4f94fcb5615719b3b4373c4f93d17e77 /cluster.proto
parentec178de1d7b9cd94bdd6ffd6a64b914bae15a549 (diff)
is this how to support multiple droplets?
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'cluster.proto')
-rw-r--r--cluster.proto9
1 files changed, 9 insertions, 0 deletions
diff --git a/cluster.proto b/cluster.proto
new file mode 100644
index 0000000..d50af52
--- /dev/null
+++ b/cluster.proto
@@ -0,0 +1,9 @@
+syntax = "proto3";
+package virtbuf;
+
+import "droplet.proto";
+
+message Cluster {
+ int64 id = 1;
+ repeated Droplet droplets = 2;
+}