summaryrefslogtreecommitdiff
path: root/main.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 /main.go
parent6b3651edb76c86d10735f2859dc8121a0fb1ac3e (diff)
start a gui
Diffstat (limited to 'main.go')
-rw-r--r--main.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/main.go b/main.go
index 2b81159..01edde3 100644
--- a/main.go
+++ b/main.go
@@ -53,9 +53,11 @@ func main() {
os.Exit(-1)
}
// me.targets = make(map[string]string) // keep track of what versions the machines should be running
- me.upgrade = make(map[string]bool) // used to trigger upgrade attempts
+ me.upgrade = make(map[string]bool) // used to trigger upgrade attempts
go NewWatchdog()
- startHTTP()
+ go startHTTP()
+
+ doGui()
}