summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-08-16 16:23:08 -0500
committerJeff Carr <[email protected]>2025-08-16 21:50:40 -0500
commitedb3e23311b9cd667898e625b07f5dbeb43e30e3 (patch)
tree53da542d42f7b763c92b5622e7968b854ccbf7a6 /structs.go
parentde6b45ced2fec64bdd4eb1c7d90c13251d394fe8 (diff)
fixes to test plugins by os.Exec()v0.0.2
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/structs.go b/structs.go
index 50e3742..d76a1ff 100644
--- a/structs.go
+++ b/structs.go
@@ -5,11 +5,14 @@ package main
import (
"go.wit.com/dev/alexflint/arg"
+ "go.wit.com/gui"
)
var me *autoType
// this app's variables
type autoType struct {
- argpp *arg.Parser // go-arg preprocessor
+ pp *arg.Parser // go-arg preprocessor
+ myGui *gui.Node // the gui toolkit handle
+ dd *gui.Node // the drives dropdown list
}