mirror of
https://github.com/safedep/pmg.git
synced 2026-08-03 07:24:09 +02:00
16 lines
216 B
Go
16 lines
216 B
Go
package version
|
|
|
|
import runtimeDebug "runtime/debug"
|
|
|
|
var (
|
|
Version string
|
|
Commit string
|
|
)
|
|
|
|
func init() {
|
|
if Version == "" {
|
|
buildInfo, _ := runtimeDebug.ReadBuildInfo()
|
|
Version = buildInfo.Main.Version
|
|
}
|
|
}
|