SimpleFileServer/version/Version.go
Thorsten Sommer f90555c439 Update
2018-09-15 16:24:47 +02: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
}