diff options
Diffstat (limited to 'structs.go')
| -rw-r--r-- | structs.go | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -4,12 +4,13 @@ import ( "net/url" "time" + "go.wit.com/dev/alexflint/arg" "go.wit.com/gui" "go.wit.com/lib/gadgets" "go.wit.com/lib/protobuf/virtpb" ) -var me virtigoT +var me *virtigoT // disable the GUI func (b *virtigoT) Disable() { @@ -23,6 +24,7 @@ func (b *virtigoT) Enable() { // this app's variables type virtigoT struct { + pp *arg.Parser // go-arg parser cluster *virtpb.OldCluster // basic cluster settings myGui *gui.Node // the gui toolkit handle e *virtpb.Events // virt protobuf events |
