mirror of
https://github.com/mudler/luet.git
synced 2025-09-14 14:22:38 +00:00
Switch to go mod
This commit is contained in:
21
vendor/github.com/vbatts/go-mtree/xattr/xattr_unsupported.go
generated
vendored
Normal file
21
vendor/github.com/vbatts/go-mtree/xattr/xattr_unsupported.go
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
// +build !linux
|
||||
|
||||
package xattr
|
||||
|
||||
// Get would return the extended attributes, but this unsupported feature
|
||||
// returns nil, nil
|
||||
func Get(path, name string) ([]byte, error) {
|
||||
return nil, nil
|
||||
}
|
||||
|
||||
// Set would set the extended attributes, but this unsupported feature returns
|
||||
// nil
|
||||
func Set(path, name string, value []byte) error {
|
||||
return nil
|
||||
}
|
||||
|
||||
// List would return the keys of extended attributes, but this unsupported
|
||||
// feature returns nil, nil
|
||||
func List(path string) ([]string, error) {
|
||||
return nil, nil
|
||||
}
|
Reference in New Issue
Block a user