heruvym/version/version.go

11 lines
277 B
Go
Raw Permalink Normal View History

2021-04-10 18:46:51 +00:00
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"
)