This commit is contained in:
2024-05-14 12:10:58 +02:00
parent a9bb79b01c
commit 59911aebb9
645 changed files with 263320 additions and 0 deletions

11
vendor/github.com/glycerine/zygomys/zygo/version.go generated vendored Normal file
View File

@@ -0,0 +1,11 @@
package zygo
import "fmt"
// version information. See Makefile and gitcommit.go for update/init.
var GITLASTTAG string
var GITLASTCOMMIT string
func Version() string {
return fmt.Sprintf("%s/%s", GITLASTTAG, GITLASTCOMMIT)
}