github.com/wfusion/gofusion@v1.1.14/common/constant/version.go (about)

     1  package constant
     2  
     3  import (
     4  	"runtime"
     5  )
     6  
     7  const (
     8  	OS   = runtime.GOOS
     9  	Arch = runtime.GOARCH
    10  )
    11  
    12  var (
    13  	GoVersion = runtime.Version()
    14  )