summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-09-09 05:11:23 -0500
committerJeff Carr <[email protected]>2025-09-09 05:11:23 -0500
commitc3f5588365c1c68a1d87e5a6415eac18876dfce9 (patch)
treea6aa7316206e9b62052f39dad33e9d4fd6b54e90 /structs.go
parentd5069b63f882d12a3179332f1281bcd1ede44462 (diff)
new GUI codebasev0.0.15
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/structs.go b/structs.go
index 178a187..6251719 100644
--- a/structs.go
+++ b/structs.go
@@ -5,13 +5,13 @@ package main
import (
"go.wit.com/dev/alexflint/arg"
- "go.wit.com/gui"
+ "go.wit.com/lib/gui/prep"
)
var me *mainType
// this app's variables
type mainType struct {
- pp *arg.Parser // for parsing the command line args. Yay to alexf lint!
- myGui *gui.Node // the gui toolkit handle
+ pp *arg.Parser // for parsing the command line args. Yay to alexf lint!
+ myGui *prep.GuiPrep // the gui toolkit handle
}