summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-17 15:43:06 -0500
committerJeff Carr <[email protected]>2025-10-17 15:43:06 -0500
commitd7b8e423edae12489f8e341438ba61bb458dea9b (patch)
tree0b83c82e615024cf0dec5477c0adb7aa1cb51e86 /main.go
parentc0d01a48275761e42c59655a7554e9b4fe352cc9 (diff)
code for argv PB moved to a more standard 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 a5da179..7b00bb2 100644
--- a/main.go
+++ b/main.go
@@ -6,7 +6,7 @@ import (
"net/http"
"strings"
- "go.wit.com/lib/gui/prep"
+ "go.wit.com/lib/protobuf/argvpb"
"go.wit.com/lib/protobuf/forgepb"
"go.wit.com/lib/protobuf/gitpb"
"go.wit.com/log"
@@ -34,7 +34,7 @@ var LIBDIR string = "/var/lib/gowebd/"
func main() {
me = new(mainType)
- me.sh = prep.Autocomplete(&argv) // adds shell auto complete to go-args
+ me.sh = argvpb.Autocomplete(&argv) // adds shell auto complete to go-args
if argv.RepoMap != "" {
REPOMAP = argv.RepoMap