mirror of
https://github.com/net-byte/vtun
synced 2024-03-14 10:50:03 +08:00
18 lines
316 B
Go
18 lines
316 B
Go
package common
|
|
|
|
import "log"
|
|
|
|
var (
|
|
Version = "v1.7.1"
|
|
GitHash = "nil"
|
|
BuildTime = "nil"
|
|
GoVersion = "nil"
|
|
)
|
|
|
|
func DisplayVersionInfo() {
|
|
log.Printf("vtun version -> %s", Version)
|
|
log.Printf("git hash -> %s", GitHash)
|
|
log.Printf("build time -> %s", BuildTime)
|
|
log.Printf("go version -> %s", GoVersion)
|
|
}
|