diff options
Diffstat (limited to 'structs.go')
| -rw-r--r-- | structs.go | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -7,17 +7,22 @@ import ( sync "sync" "time" + "go.wit.com/dev/alexflint/arg" "go.wit.com/gui" + "go.wit.com/lib/fhelp" "go.wit.com/lib/gadgets" "go.wit.com/lib/protobuf/argvpb" + "go.wit.com/lib/protobuf/forgepb" ) var me *gusconf // this app's variables type gusconf struct { - argv *argvpb.Argv // shell autocomplete - myGui *argvpb.GuiPrep // the base of the gui + 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 portmaps *Portmaps // the portmap window portwin *stdTableWin // the portwin window events *Events // the event log |
