Files
luet/vendor/github.com/vbatts/go-mtree/stat_windows.go
Ettore Di Giacinto 0f7ba8ce05 Update vendor
2021-10-29 16:12:26 +02:00

13 lines
177 B
Go

// +build windows
package mtree
import "os"
func statIsUID(stat os.FileInfo, uid int) bool {
return false
}
func statIsGID(stat os.FileInfo, uid int) bool {
return false
}