Codebase list golang-github-vbatts-go-mtree / upstream/latest stat_windows.go
upstream/latest

Tree @upstream/latest (Download .tar.gz)

stat_windows.go @upstream/latest

1cf0881
 
 
 
 
 
 
 
 
 
 
 
// +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
}