mirror of
https://github.com/containers/podman.git
synced 2025-05-20 08:36:23 +08:00
12 lines
175 B
Go
12 lines
175 B
Go
//go:build darwin || dragonfly || freebsd || linux || netbsd || openbsd
|
|
|
|
package machine
|
|
|
|
import (
|
|
"runtime"
|
|
)
|
|
|
|
func DetermineMachineArch() string {
|
|
return runtime.GOARCH
|
|
}
|