heruvym/version/version.go
2024-11-26 02:11:24 +03:00

11 lines
277 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"
)