summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-17 16:29:12 -0500
committerJeff Carr <[email protected]>2025-10-17 16:29:12 -0500
commit006feab5a020ce63e5d3daea01bf496a9dcc16c4 (patch)
treebe671d6cfe934876866176d771844233bd9b6664 /main.go
parentb5588034d45ad46642eef6dbd91c4ef5f463a7ff (diff)
moved argvpb to new location
Diffstat (limited to 'main.go')
-rw-r--r--main.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.go b/main.go
index 39fd0b2..b361009 100644
--- a/main.go
+++ b/main.go
@@ -10,8 +10,8 @@ import (
"go.wit.com/lib/fhelp"
"go.wit.com/lib/gadgets"
- "go.wit.com/lib/gui/prep"
"go.wit.com/lib/gui/shell"
+ "go.wit.com/lib/protobuf/argvpb"
"go.wit.com/lib/protobuf/forgepb"
"go.wit.com/lib/protobuf/gitpb"
"go.wit.com/log"
@@ -29,7 +29,7 @@ var argv args
func main() {
me = new(autoType)
- me.sh = prep.Autocomplete(&argv) // adds shell auto complete to go-args
+ me.sh = argvpb.Autocomplete(&argv) // adds shell auto complete to go-args
me.forge, _ = forgepb.Init()
me.found = new(gitpb.Repos)