diff options
| author | Jeff Carr <[email protected]> | 2025-10-19 05:32:06 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-19 05:32:06 -0500 |
| commit | ae4d94942e53723785dc1df21c61235b713e964b (patch) | |
| tree | b79c3c030690e0cdbbab4f65483ef5ce4ccbf5ef /structs.go | |
| parent | d7b8e423edae12489f8e341438ba61bb458dea9b (diff) | |
new argvv0.22.130
Diffstat (limited to 'structs.go')
| -rw-r--r-- | structs.go | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -4,6 +4,8 @@ package main import ( + "go.wit.com/dev/alexflint/arg" + "go.wit.com/lib/fhelp" "go.wit.com/lib/protobuf/argvpb" "go.wit.com/lib/protobuf/forgepb" ) @@ -12,6 +14,8 @@ var me *mainType // this app's variables type mainType struct { - sh *argvpb.Argv // shell autocomplete - forge *forgepb.Forge // for holding the forge protobuf files + argv *argvpb.Argv // more experiments for bash handling + pp *arg.Parser // for parsing the command line args. Yay to alexf lint! + myGui *fhelp.GuiPrep // for initializing the GUI toolkits + forge *forgepb.Forge // your customized repo preferences and settings } |
