summaryrefslogtreecommitdiff
path: root/structs.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 /structs.go
parent63be841469874433d6bd6e7e21381f994c086c24 (diff)
new GUI changesv0.0.31
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/structs.go b/structs.go
index a1f812c..d0c5e30 100644
--- a/structs.go
+++ b/structs.go
@@ -5,7 +5,7 @@ package main
import (
"go.wit.com/dev/alexflint/arg"
- "go.wit.com/gui"
+ "go.wit.com/lib/gui/prep"
"go.wit.com/lib/protobuf/forgepb"
)
@@ -15,5 +15,5 @@ var me *mainType
type mainType struct {
pp *arg.Parser // for parsing the command line args. Yay to alexf lint!
forge *forgepb.Forge // for holding the forge protobuf files
- myGui *gui.Node // the gui toolkit handle
+ myGui *prep.GuiPrep // the gui toolkit handle
}