go-mtree/xattr/xattr_unsupported.go
Vincent Batts 2d3aea8623 xattr: simple wrapper for syscalls
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2016-03-24 16:35:09 -04:00

13 lines
224 B
Go

// +build !linux
package xattr
func Get(path, name string) ([]byte, error) {
return nil, nil
}
func Set(path, name string, value []byte) error {
return nil
}
func List(path string) ([]string, error) {
return nil, nil
}