summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go13
1 files changed, 7 insertions, 6 deletions
diff --git a/structs.go b/structs.go
index f6a09ea..8de8f18 100644
--- a/structs.go
+++ b/structs.go
@@ -15,10 +15,11 @@ var me *mainType
// this app's variables
type mainType struct {
- 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
- configs *forgepb.ForgeConfigs // for holding the forge protobuf files
- missing *gitpb.Repos // repos we are missing
+ 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
+ configs *forgepb.ForgeConfigs // for holding the forge protobuf files
+ Patchsets *forgepb.Sets // for holding the forge protobuf files
+ missing *gitpb.Repos // repos we are missing
}