heruvym/version/version.go
2021-04-10 21:46:51 +03:00

10 lines
276 B
Go

package version
var (
// BuildTime is a time label of the moment when the binary was built
BuildTime = "unset"
// Commit is a last commit hash at the moment when the binary was built
Commit = "unset"
// Release is a semantic version of current build
Release = "unset"
)