diff options
Diffstat (limited to 'structs.go')
| -rw-r--r-- | structs.go | 16 |
1 files changed, 4 insertions, 12 deletions
@@ -1,6 +1,7 @@ package main import ( + "go.wit.com/dev/alexflint/arg" "go.wit.com/gui" "go.wit.com/lib/protobuf/forgepb" ) @@ -9,16 +10,7 @@ var me *autoType // this app's variables type autoType struct { - // allrepos map[string]*repo - myGui *gui.Node - - // the window from the /lib/gui/gowit package - // lw *gadgets.BasicWindow - - // our view of the repositories - // repos *repoWindow - // repoList *repolist.RepoList - - // your customized repo preferences and settings - forge *forgepb.Forge + argpp *arg.Parser // go-arg preprocessor + myGui *gui.Node // the gui handle + forge *forgepb.Forge // your customized repo preferences and settings } |
