diff options
| author | Jeff Carr <[email protected]> | 2025-10-17 11:44:39 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-17 11:44:39 -0500 |
| commit | 923ab262f624bd50c543062c4f3f2db9e577d5fb (patch) | |
| tree | 0a028b65e2800a291e44ec7c1c945aa30f111897 /generateHeader.go | |
| parent | 0be9867c3193033977951e853445464fb9e4596a (diff) | |
Finally renamed prep to argvpb
I think this will be the final resting palce for
this part of the shell autocomplete. At least I
hope so.
Diffstat (limited to 'generateHeader.go')
| -rw-r--r-- | generateHeader.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generateHeader.go b/generateHeader.go index d961646..72fdc9e 100644 --- a/generateHeader.go +++ b/generateHeader.go @@ -8,7 +8,7 @@ import ( "io" "os" - "go.wit.com/lib/gui/prep" + "go.wit.com/lib/protobuf/argvpb" "go.wit.com/log" ) @@ -20,7 +20,7 @@ func pbHeaderComment(w io.Writer) { fmt.Fprintln(w, "// user defined Mutex locks were auto added") fmt.Fprintln(w, "//") fmt.Fprintln(w, "// This file was autogenerated with autogenpb:") - fmt.Fprintln(w, "// ", prep.StandardVersion(ARGNAME, VERSION, BUILDTIME)) + fmt.Fprintln(w, "// ", argvpb.StandardVersion(ARGNAME, VERSION, BUILDTIME)) fmt.Fprintln(w, "// Theese sort.pb.go and marshal.pb.go files are autogenerated") fmt.Fprintln(w, "// The autogenpb sources have example .proto files with instructions") fmt.Fprintln(w, "") @@ -32,7 +32,7 @@ func headerComment(w io.Writer) { fmt.Fprintln(w, "// go install go.wit.com/apps/autogenpb@latest") fmt.Fprintln(w, "//") fmt.Fprintln(w, "// This file was autogenerated with autogenpb:") - fmt.Fprintln(w, "// ", prep.StandardVersion(ARGNAME, VERSION, BUILDTIME)) + fmt.Fprintln(w, "// ", argvpb.StandardVersion(ARGNAME, VERSION, BUILDTIME)) fmt.Fprintln(w, "// Theese sort.pb.go and marshal.pb.go files are autogenerated") fmt.Fprintln(w, "// The autogenpb sources have example .proto files with instructions") fmt.Fprintln(w, "//") |
