mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-06 08:55:44 +00:00
11 lines
175 B
Go
11 lines
175 B
Go
//go:build darwin || dragonfly || freebsd || linux || netbsd || openbsd
|
|
|
|
package machine
|
|
|
|
import (
|
|
"runtime"
|
|
)
|
|
|
|
func DetermineMachineArch() string {
|
|
return runtime.GOARCH
|
|
}
|