diff options
| author | Jeff Carr <[email protected]> | 2025-10-17 15:43:06 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-17 15:43:06 -0500 |
| commit | d7b8e423edae12489f8e341438ba61bb458dea9b (patch) | |
| tree | 0b83c82e615024cf0dec5477c0adb7aa1cb51e86 /main.go | |
| parent | c0d01a48275761e42c59655a7554e9b4fe352cc9 (diff) | |
code for argv PB moved to a more standard location
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |
