16 lines
294 B
Go
16 lines
294 B
Go
// +build !linux
|
|
|
|
package xattr
|
|
|
|
func Listxattr(path string) ([]string, error) {
|
|
return nil, ErrNotSupportedPlatform
|
|
}
|
|
|
|
func Getxattr(path, attr string) (string, error) {
|
|
return "", ErrNotSupportedPlatform
|
|
}
|
|
|
|
func Setxattr(path, xattr, value string) error {
|
|
return ErrNotSupportedPlatform
|
|
}
|