summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-04-12 11:27:55 -0500
committerJeff Carr <[email protected]>2025-04-12 11:27:55 -0500
commit69ee3b95d0a2f5a3079e512a9f3315026912fcde (patch)
tree89c816e422e08cfbc4e2113eeba9da5954aed070 /main.go
parent16558e1b72762e47ca9664c74922e060d571cea4 (diff)
droplet list works
Diffstat (limited to 'main.go')
-rw-r--r--main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.go b/main.go
index 1ca73f1..ee3182e 100644
--- a/main.go
+++ b/main.go
@@ -87,7 +87,7 @@ func main() {
clusters := virtpb.NewClusters()
c := new(virtpb.Cluster)
c.Uuid = uuid.New().String()
- c.URL = argv.Server
+ c.URL = append(c.URL, argv.Server)
clusters.Append(c)
virtpb.ConfigWriteTEXT(clusters, "cluster.text")