summaryrefslogtreecommitdiff
path: root/helpers.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-10-31 13:12:11 -0500
committerJeff Carr <[email protected]>2024-10-31 13:12:11 -0500
commite8834578fbecc48b133e6550829de4766bc309a8 (patch)
tree87c812f1e056debab780b2c8b83d46a62b3eda2f /helpers.go
parent10793e365d594e98bbc8e04251cfbc6b6b3ddbea (diff)
example runs
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'helpers.go')
-rw-r--r--helpers.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/helpers.go b/helpers.go
index 72d4008..0ecbb64 100644
--- a/helpers.go
+++ b/helpers.go
@@ -9,6 +9,15 @@ import (
"google.golang.org/protobuf/proto"
)
+func InitCluster() *NewCluster {
+ var c *NewCluster
+ c = new(NewCluster)
+ c.d = new(Droplets)
+ c.h = new(Hypervisors)
+ c.e = new(Events)
+ return c
+}
+
// human readable JSON
func (d *Droplets) FormatJSON() string {
return protojson.Format(d)