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"
)
const VERSION = "1.0.0"
func GetGoversion() (ver string) {
ver = runtime.Version()
ver = strings.Replace(ver, "go", "", 1)
return
}