summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-09-09 05:08:03 -0500
committerJeff Carr <[email protected]>2025-09-09 05:08:03 -0500
commit24e137c7ece5d2f3fec331fb92c1e20bec9e9505 (patch)
tree29cfe435f9df540aaa6c2d6d68cdbaa479dbc3c7 /main.go
parent63be841469874433d6bd6e7e21381f994c086c24 (diff)
new GUI changesv0.0.31
Diffstat (limited to 'main.go')
-rw-r--r--main.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/main.go b/main.go
index f883dbf..3d601a5 100644
--- a/main.go
+++ b/main.go
@@ -69,7 +69,9 @@ func main() {
if argv.Daemon == true {
if argv.Gui != nil {
- go doGui()
+ me.myGui.Start() // loads the GUI toolkit
+ doGui() // start making our forge GUI
+ debug() // sits here forever
}
mux := http.NewServeMux()
okHandlerFunc := http.HandlerFunc(okHandler)