mirror of
https://github.com/restic/restic.git
synced 2025-01-21 06:48:35 +00:00
10 lines
266 B
Go
10 lines
266 B
Go
//go:build aix || dragonfly || netbsd || openbsd
|
|
// +build aix dragonfly netbsd openbsd
|
|
|
|
package fs
|
|
|
|
import "github.com/restic/restic/internal/restic"
|
|
|
|
func (p *pathMetadataHandle) Xattr(ignoreListError bool) ([]restic.ExtendedAttribute, error) {
|
|
return nil, nil
|
|
}
|