summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go16
1 files changed, 4 insertions, 12 deletions
diff --git a/structs.go b/structs.go
index 7ab78ee..df8a3db 100644
--- a/structs.go
+++ b/structs.go
@@ -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
}