8e5b17cf13
Signed-off-by: Mrunal Patel <mrunalp@gmail.com>
8 lines
168 B
Go
8 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)
|