SimpleFileServer/version/Version.go
2018-09-15 14:30:05 +00:00

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
}