summaryrefslogtreecommitdiff
path: root/cluster.proto
diff options
context:
space:
mode:
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;
+}