1
0
Fork 0
mirror of https://github.com/vbatts/go-mtree.git synced 2024-09-27 20:59:47 +00:00
go-mtree/stat_windows.go
Vincent Batts 94303e15af
*.go: updated go:build added via gofmt
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2022-04-23 12:59:26 -04:00

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
}