github.com/LagrangeDev/LagrangeGo@v0.0.0-20240512064304-ad4a85e10cb4/utils/platform/platform.go (about) 1 package platform 2 3 import "runtime" 4 5 func System() string { 6 return runtime.GOOS 7 } 8 9 func Version() string { 10 return runtime.GOARCH 11 }