12 lines
347 B
Go
12 lines
347 B
Go
|
|
// Package buildinfo exposes compile-time build metadata.
|
||
|
|
//
|
||
|
|
// Values are injected at link time via -ldflags -X (see the Makefile). When
|
||
|
|
// the binary is built without those flags (e.g. go run, go test), the
|
||
|
|
// placeholder defaults below are used.
|
||
|
|
package buildinfo
|
||
|
|
|
||
|
|
var (
|
||
|
|
Version = "dev"
|
||
|
|
GitRevision = "unknown"
|
||
|
|
BuildDate = "unknown"
|
||
|
|
)
|