summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-02-22 07:17:13 -0600
committerJeff Carr <[email protected]>2025-02-22 07:17:13 -0600
commitd687de6c043b6f3fd67827fd9f12e8af3ece0d68 (patch)
treed38baf951ffb06fafcb55d1e93a793bbbabd5622 /structs.go
parent84c772dc41eda87ea45531c63ac95cc3cece4237 (diff)
fix build with zoopb out of forgev0.0.46
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go8
1 files changed, 5 insertions, 3 deletions
diff --git a/structs.go b/structs.go
index 9307b0e..e3c170c 100644
--- a/structs.go
+++ b/structs.go
@@ -7,13 +7,15 @@ import (
"go.wit.com/dev/alexflint/arg"
"go.wit.com/gui"
"go.wit.com/lib/protobuf/forgepb"
+ "go.wit.com/lib/protobuf/zoopb"
)
var me *autoType
// this app's variables
type autoType struct {
- argpp *arg.Parser // go-arg preprocessor
- myGui *gui.Node // the gui handle
- forge *forgepb.Forge // your customized repo preferences and settings
+ argpp *arg.Parser // go-arg preprocessor
+ myGui *gui.Node // the gui handle
+ forge *forgepb.Forge // your customized repo preferences and settings
+ machine *zoopb.Machine // your customized repo preferences and settings
}