1
0
Fork 0
mirror of https://github.com/vbatts/go-mtree.git synced 2025-07-02 22:08:31 +00:00

xattr: simple wrapper for syscalls

Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
Vincent Batts 2016-03-17 13:41:08 -04:00
parent ec1977017d
commit 2d3aea8623
3 changed files with 86 additions and 0 deletions

View file

@ -0,0 +1,13 @@
// +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
}