mirror of
https://github.com/docker/cli.git
synced 2026-01-26 15:41:42 +03:00
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) {
|
|
}
|