summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-02-15 03:45:32 -0600
committerJeff Carr <[email protected]>2025-02-15 07:28:30 -0600
commit940d259bbf34dd643ac8a555dc003804fd036c43 (patch)
tree2d07966d272774f06d17adcc8c472f961b15ba8c /structs.go
parent6b3651edb76c86d10735f2859dc8121a0fb1ac3e (diff)
start a gui
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/structs.go b/structs.go
index 65d5173..42846ee 100644
--- a/structs.go
+++ b/structs.go
@@ -3,6 +3,7 @@ package main
import (
"time"
+ "go.wit.com/gui"
"go.wit.com/lib/protobuf/zoopb"
)
@@ -19,4 +20,5 @@ type stuff struct {
machines *zoopb.Machines // every machine that has reported itself to the zookeeper
targets map[string]string // what versions the machines should be running
upgrade map[string]bool // use this to trigger builds
+ myGui *gui.Node // the gui toolkit handle
}