SimpleFileServer/version/Version.go

15 lines
187 B
Go
Raw Normal View History

2018-09-13 13:30:32 +00:00
package version
import (
"runtime"
"strings"
)
2018-09-15 12:27:31 +00:00
const VERSION = "1.0.5"
2018-09-13 13:30:32 +00:00
2018-09-13 19:15:31 +00:00
func GetGoVersion() (ver string) {
2018-09-13 13:30:32 +00:00
ver = runtime.Version()
ver = strings.Replace(ver, "go", "", 1)
return
}