mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
17 lines
299 B
Go
17 lines
299 B
Go
package pilosa
|
|
|
|
var Version = "v0.0.0"
|
|
var BuildTime = "not recorded"
|
|
|
|
// ldflags works without this - removing it allows TestHandler_Version to work simply
|
|
func SetupVersionBuild() {
|
|
/*
|
|
if Version == "" {
|
|
Version = "v0.0.0"
|
|
}
|
|
if BuildTime == "" {
|
|
BuildTime = "not recorded"
|
|
}
|
|
*/
|
|
|
|
}
|