summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go7
1 files changed, 5 insertions, 2 deletions
diff --git a/structs.go b/structs.go
index 6f7efa0..8b60bb2 100644
--- a/structs.go
+++ b/structs.go
@@ -5,12 +5,15 @@ package main
import (
"go.wit.com/dev/alexflint/arg"
+ "go.wit.com/gui"
+ "go.wit.com/lib/protobuf/chatpb"
)
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!
+ chats *chatpb.Chats // all our prior conversations with gemini
+ myGui *gui.Node // the gui toolkit handle
}