mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 21:47:40 +03:00
18 lines
315 B
Go
18 lines
315 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"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 fmt.Sprintf("%s %s", info.Main.Version, info.Main.Sum)
|
|
}
|
|
return Version
|
|
}
|