Files
tablizer/vendor/github.com/glycerine/zygomys/zygo/version.go
2024-05-14 12:10:58 +02:00

12 lines
229 B
Go

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)
}