mirror of https://github.com/docker/cli.git
15 lines
185 B
Go
15 lines
185 B
Go
|
// +build windows
|
||
|
|
||
|
package fsutil
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
)
|
||
|
|
||
|
func loadXattr(_ string, _ *Stat) error {
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func setUnixOpt(_ os.FileInfo, _ *Stat, _ string, _ map[uint64]string) {
|
||
|
}
|