summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-10-23 00:24:09 -0500
committerJeff Carr <[email protected]>2024-10-23 00:24:09 -0500
commit7cff6fef316f4a9cf9f256e1e5e8739197de78dc (patch)
treeb0cbf2e842bd4122468e0afb696f097ec8323750
parent2eff11bb2167ea98a4d81996056011eb4fb897d8 (diff)
no idea the right way to do this
Signed-off-by: Jeff Carr <[email protected]>
-rw-r--r--droplet.proto4
-rw-r--r--helpers.go4
2 files changed, 8 insertions, 0 deletions
diff --git a/droplet.proto b/droplet.proto
index c1cdf3d..1c1a3b6 100644
--- a/droplet.proto
+++ b/droplet.proto
@@ -3,6 +3,10 @@ package virtbuf;
import "google/protobuf/any.proto";
+message Droplets {
+ repeated Droplet droplets = 1;
+}
+
message Droplet {
string uuid = 1;
string name = 2;
diff --git a/helpers.go b/helpers.go
index 180452c..01ac4b6 100644
--- a/helpers.go
+++ b/helpers.go
@@ -46,6 +46,10 @@ func (c *Cluster) FormatTEXT() string {
return prototext.Format(c)
}
+func (d *Droplets) FormatTEXT() string {
+ return prototext.Format(d)
+}
+
func (c *Cluster) FindDroplet(name string) *Droplet {
for _, d := range c.Droplets {
if d.Hostname == name {