mirror of
https://github.com/opencontainers/runc.git
synced 2026-07-11 06:03:57 +08:00
768ae3990c
Signed-off-by: Harshavardhana <fharshav@redhat.com>
9 lines
168 B
Go
9 lines
168 B
Go
package xattr
|
|
|
|
import (
|
|
"fmt"
|
|
"runtime"
|
|
)
|
|
|
|
var ErrNotSupportedPlatform = fmt.Errorf("platform and architecture is not supported %s %s", runtime.GOOS, runtime.GOARCH)
|