summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-17 16:29:56 -0500
committerJeff Carr <[email protected]>2025-10-17 16:29:56 -0500
commit72b5033710cede2d52c63afe3f6dec3d1e0f366b (patch)
treec59a2b090314120968a14585b6728b2b6d24601e /main.go
parent44b8f48a273a0d6f9e27e91fb368c1972744d2c9 (diff)
renamed lib to argvpb
Diffstat (limited to 'main.go')
-rw-r--r--main.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/main.go b/main.go
index cbd9837..47d9a43 100644
--- a/main.go
+++ b/main.go
@@ -9,7 +9,7 @@ import (
"path/filepath"
"time"
- "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"
@@ -35,8 +35,8 @@ func saveMissing() error {
func main() {
me = new(mainType)
- me.myGui = prep.Gui() // prepares the GUI package for go-args
- me.auto = prep.Bash(&argv) // this line should be: prep.Bash(&argv)
+ me.myGui = argvpb.Gui() // prepares the GUI package for go-args
+ me.argv = argvpb.Autocomplete(&argv) // adds shell auto complete to go-args
me.forge = forgepb.InitByFullpath("/etc/forged/forge.text")
me.forge.Config.DumpENV()