mirror of
https://github.com/vbatts/go-mtree.git
synced 2024-11-16 05:38:39 +00:00
13 lines
196 B
Go
13 lines
196 B
Go
//go:build windows
|
|
// +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
|
|
}
|