diff options
| author | Jeff Carr <[email protected]> | 2025-08-21 14:13:42 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-08-21 14:13:42 -0500 |
| commit | a10b75d453c266764e4e74d64cf63e3902625d4a (patch) | |
| tree | 480ee28b62cbc399e843d6e45a8179c6d3cb942e /structs.go | |
| parent | b221e7a95cc27c8b0b17c7322bea02b88888e033 (diff) | |
make an --add <filename> option
Diffstat (limited to 'structs.go')
| -rw-r--r-- | structs.go | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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 } |
