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

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

stat_windows.go @debian/latestraw · history · blame

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