summaryrefslogtreecommitdiff
path: root/argv.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-03-26 04:22:21 -0500
committerJeff Carr <[email protected]>2025-03-26 20:44:06 -0500
commit4ab3a465af1d6fef6afe381b98817028da9f5d1e (patch)
tree33d08a33476e62828ed074ef189178e879755175 /argv.go
parent7a68c6247ae72ef4a22fb3b1e767c9f15fc67b82 (diff)
mutex lock. duh. actually use it.
Diffstat (limited to 'argv.go')
-rw-r--r--argv.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/argv.go b/argv.go
index 76cef67..b85be17 100644
--- a/argv.go
+++ b/argv.go
@@ -26,7 +26,7 @@ type args struct {
}
func (a args) Description() string {
- return "autogenpb " + VERSION + " Built on " + BUILDTIME + `
+ return "go.wit.com/apps/autogenpb " + VERSION + " Built on " + BUILDTIME + `
Auto Generate protocol buffer Sort() and Marshal() functions
@@ -38,5 +38,5 @@ See the git sources for an example .proto file.
}
func (args) Version() string {
- return "autogenpb " + VERSION + " Built on " + BUILDTIME
+ return "go.wit.com/apps/autogenpb " + VERSION + " Built on " + BUILDTIME
}