summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-19 05:32:06 -0500
committerJeff Carr <[email protected]>2025-10-19 05:32:06 -0500
commitae4d94942e53723785dc1df21c61235b713e964b (patch)
treeb79c3c030690e0cdbbab4f65483ef5ce4ccbf5ef /structs.go
parentd7b8e423edae12489f8e341438ba61bb458dea9b (diff)
new argvv0.22.130
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go8
1 files changed, 6 insertions, 2 deletions
diff --git a/structs.go b/structs.go
index d546363..e80d018 100644
--- a/structs.go
+++ b/structs.go
@@ -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
}