summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-26 10:48:41 -0500
committerJeff Carr <[email protected]>2025-10-26 10:48:41 -0500
commit51027a1b04b3da1a81d617d16a07ac1242d90a81 (patch)
treececc3b9d3d1c2e9b6285117bb5ae01827b30fd22 /main.go
parent0653bd60ce9276ad6245b25c60f37aefd0d1408a (diff)
update for new argvpb changes
Diffstat (limited to 'main.go')
-rw-r--r--main.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/main.go b/main.go
index 70d95a6..4637ad2 100644
--- a/main.go
+++ b/main.go
@@ -2,6 +2,8 @@ package main
import (
"embed"
+
+ "go.wit.com/lib/protobuf/argvpb"
)
//go:embed resources/*
@@ -9,6 +11,7 @@ var resources embed.FS
func main() {
me = new(mainType)
+ argvpb.Init(&argv, APPNAME, BUILDTIME, VERSION) // adds shell auto-complete
parseArgvStruct()
}