diff options
| author | Jeff Carr <[email protected]> | 2025-10-17 17:18:38 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-17 17:18:38 -0500 |
| commit | 7cfeaaa25c46d87919b5a61dd2338765f40fc23c (patch) | |
| tree | 3b3d6cf7540bc3192ef686c737a01afb5a3321d3 /main.go | |
| parent | 248f081df39436c234f38c3a1980365e2b4673c7 (diff) | |
lib now named 'argvpb'
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -14,10 +14,9 @@ import ( sync "sync" "time" - "github.com/svent/go-nbreader" - "github.com/google/uuid" - "go.wit.com/lib/gui/prep" + "github.com/svent/go-nbreader" + "go.wit.com/lib/protobuf/argvpb" "go.wit.com/log" timestamppb "google.golang.org/protobuf/types/known/timestamppb" ) @@ -32,8 +31,8 @@ var resources embed.FS func main() { me = new(gusconf) - me.myGui = prep.Gui() // prepares the GUI package for go-args - me.auto = prep.Bash3(&argv) // add support for bash autocomplete with go-arg + me.myGui = argvpb.Gui() // prepares the GUI package for go-args + me.argv = argvpb.Autocomplete(&argv) // adds shell auto complete to go-args log.Info("tmp hack", uuid.New().String()) |
