mirror of
https://github.com/Mrs4s/go-cqhttp.git
synced 2025-05-04 19:17:37 +08:00
17 lines
271 B
Go
17 lines
271 B
Go
package base
|
||
|
||
import "runtime/debug"
|
||
|
||
// Version go-cqhttp的版本信息,在编译时使用ldflags进行覆盖
|
||
var Version = "unknown"
|
||
|
||
func init() {
|
||
if Version != "unknown" {
|
||
return
|
||
}
|
||
info, ok := debug.ReadBuildInfo()
|
||
if ok {
|
||
Version = info.Main.Version
|
||
}
|
||
}
|