mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-05 22:17:39 +03:00
17 lines
314 B
Go
17 lines
314 B
Go
package maddy
|
|
|
|
import (
|
|
"runtime/debug"
|
|
)
|
|
|
|
var Version = "unknown (built from source tree)"
|
|
|
|
func BuildInfo() string {
|
|
if info, ok := debug.ReadBuildInfo(); ok {
|
|
if info.Main.Version == "(devel)" {
|
|
return Version
|
|
}
|
|
return info.Main.Version + " " + info.Main.Sum
|
|
}
|
|
return Version + " (GOPATH build)"
|
|
}
|