summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-17 11:44:39 -0500
committerJeff Carr <[email protected]>2025-10-17 11:44:39 -0500
commit923ab262f624bd50c543062c4f3f2db9e577d5fb (patch)
tree0a028b65e2800a291e44ec7c1c945aa30f111897 /structs.go
parent0be9867c3193033977951e853445464fb9e4596a (diff)
Finally renamed prep to argvpb
I think this will be the final resting palce for this part of the shell autocomplete. At least I hope so.
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 86985d2..2217a10 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 {
- sh *prep.Auto // shell autocomplete
- pb *Files // all the proto files as they get parsed (into another protobuf file)
+ sh *argvpb.Argv // shell autocomplete
+ pb *Files // all the proto files as they get parsed (into another protobuf file)
}