summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go7
1 files changed, 4 insertions, 3 deletions
diff --git a/structs.go b/structs.go
index f34345a..f6a09ea 100644
--- a/structs.go
+++ b/structs.go
@@ -5,6 +5,7 @@ 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"
"go.wit.com/lib/protobuf/gitpb"
@@ -14,10 +15,10 @@ var me *mainType
// this app's variables
type mainType struct {
- argv *argvpb.Argv // shell autocomplete
+ argv *argvpb.Argv // more experiments for bash handling
pp *arg.Parser // for parsing the command line args. Yay to alexf lint!
- myGui *argvpb.GuiPrep // the gui toolkit handle
- forge *forgepb.Forge // for holding the forge protobuf files
+ myGui *fhelp.GuiPrep // for initializing the GUI toolkits
+ forge *forgepb.Forge // your customized repo preferences and settings
configs *forgepb.ForgeConfigs // for holding the forge protobuf files
missing *gitpb.Repos // repos we are missing
}