From c65619154eb37912be8af563de113e028665633c Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Mon, 1 Sep 2025 01:55:06 -0500 Subject: sub in the functions --- structs.go | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'structs.go') diff --git a/structs.go b/structs.go index 16c63e9..f56498d 100644 --- a/structs.go +++ b/structs.go @@ -16,9 +16,10 @@ var me *mainType // this app's variables type mainType struct { - pp *arg.Parser // for parsing the command line args. Yay to alexf lint! - chats *chatpb.Chats // all our prior conversations with regex - myGui *gui.Node // the gui toolkit handle - client *genai.Client // the Google Gemini AI client variable - ctx context.Context + pp *arg.Parser // for parsing the command line args. Yay to alexf lint! + chats *chatpb.Chats // all our prior conversations with regex + myGui *gui.Node // the gui toolkit handle + 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 } -- cgit v1.2.3