summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-09-09 05:40:44 -0500
committerJeff Carr <[email protected]>2025-09-09 05:40:44 -0500
commitf55f7cd6f04041f9ae01a8cda6b7d2fc16da12b6 (patch)
tree912dec71bfc0cb0c8c13cc49072dd2af7b089305 /structs.go
parent6c58ab5e15104569b802681cacfb6882269dfb7f (diff)
new more better GUI codebasev0.0.12v0.0.11v0.0.10
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 4de5abd..fac6ee5 100644
--- a/structs.go
+++ b/structs.go
@@ -7,8 +7,8 @@ import (
"context"
"go.wit.com/dev/alexflint/arg"
- "go.wit.com/gui"
"go.wit.com/lib/gadgets"
+ "go.wit.com/lib/gui/prep"
"go.wit.com/lib/protobuf/chatpb"
"google.golang.org/genai"
)
@@ -22,6 +22,6 @@ type mainType struct {
client *genai.Client // the Google Gemini AI client variable
ctx context.Context // global context. what does this acutally mean?
lastChat *chatpb.Chat // the last chat. append to here
- myGui *gui.Node // the gui toolkit handle
+ myGui *prep.GuiPrep // the gui toolkit handle
mainWindow *gadgets.GenericWindow // the main GUI window
}