Provides a friendly U.S. English description of the current OS and CPU architecture.
import (
"fmt"
"runtime"
"github.com/northwood-labs/archstring"
)
func main() {
fmt.Println(
archstring.GetFriendlyName(runtime.GOOS, runtime.GOARCH),
)
}