15 lines
187 B
Go
15 lines
187 B
Go
package version
|
|
|
|
import (
|
|
"runtime"
|
|
"strings"
|
|
)
|
|
|
|
const VERSION = "1.0.7"
|
|
|
|
func GetGoVersion() (ver string) {
|
|
ver = runtime.Version()
|
|
ver = strings.Replace(ver, "go", "", 1)
|
|
return
|
|
}
|