summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-17 16:30:14 -0500
committerJeff Carr <[email protected]>2025-10-17 16:30:14 -0500
commit618bcf3a36f2229fb819be8164783e945c157a5a (patch)
tree9f9e3490498ce722a89bf2e931c65400c0bb76db /structs.go
parent3580a2bba32f43e0a54d882eae0f51239e6e540c (diff)
renamed to argvpb
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/structs.go b/structs.go
index 42b51c8..2dadbd6 100644
--- a/structs.go
+++ b/structs.go
@@ -4,13 +4,13 @@
package main
import (
- "go.wit.com/lib/gui/prep"
+ "go.wit.com/lib/protobuf/argvpb"
)
var me *mainType
// this app's variables
type mainType struct {
- auto *prep.Auto // more experiments for bash handling
- myGui *prep.GuiPrep // the gui toolkit handle
+ argv *argvpb.Argv // shell autocomplete
+ myGui *argvpb.GuiPrep // the gui toolkit handle
}