mirror of https://github.com/docker/cli.git
16 lines
150 B
Go
16 lines
150 B
Go
|
// +build !darwin
|
||
|
|
||
|
package rosetta
|
||
|
|
||
|
import (
|
||
|
"runtime"
|
||
|
)
|
||
|
|
||
|
func Enabled() bool {
|
||
|
return false
|
||
|
}
|
||
|
|
||
|
func NativeArch() string {
|
||
|
return runtime.GOARCH
|
||
|
}
|