Files
vault/version/version_base.go
2023-03-30 09:18:13 -04:00

18 lines
378 B
Go

package version
var (
// The git commit that was compiled. This will be filled in by the compiler.
GitCommit string
GitDescribe string
// The compilation date. This will be filled in by the compiler.
BuildDate string
// Whether cgo is enabled or not; set at build time
CgoEnabled bool
Version = "1.13.2"
VersionPrerelease = ""
VersionMetadata = ""
)