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