diff options
| author | Jeff Carr <[email protected]> | 2025-10-17 16:29:56 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-17 16:29:56 -0500 |
| commit | 72b5033710cede2d52c63afe3f6dec3d1e0f366b (patch) | |
| tree | c59a2b090314120968a14585b6728b2b6d24601e /main.go | |
| parent | 44b8f48a273a0d6f9e27e91fb368c1972744d2c9 (diff) | |
renamed lib to argvpb
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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() |
