mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 17:14:44 +01:00
22 lines
469 B
Go
22 lines
469 B
Go
|
//go:build openbsd || plan9
|
||
|
// +build openbsd plan9
|
||
|
|
||
|
// The pkg/xattr module doesn't compile for openbsd or plan9
|
||
|
package local
|
||
|
|
||
|
import "github.com/rclone/rclone/fs"
|
||
|
|
||
|
const (
|
||
|
xattrSupported = false
|
||
|
)
|
||
|
|
||
|
// getXattr returns the extended attributes for an object
|
||
|
func (o *Object) getXattr() (metadata fs.Metadata, err error) {
|
||
|
return nil, nil
|
||
|
}
|
||
|
|
||
|
// setXattr sets the metadata on the file Xattrs
|
||
|
func (o *Object) setXattr(metadata fs.Metadata) (err error) {
|
||
|
return nil
|
||
|
}
|