SimpleFileServer/version/Version.go
Thorsten Sommer 1f59d11b84 Test
2018-09-15 11:47:45 +02:00

15 lines
187 B
Go

package version
import (
"runtime"
"strings"
)
const VERSION = "1.0.3"
func GetGoVersion() (ver string) {
ver = runtime.Version()
ver = strings.Replace(ver, "go", "", 1)
return
}