Codebase list golang-github-vbatts-go-mtree / 0ea7e94 stat_windows.go
0ea7e94

Tree @0ea7e94 (Download .tar.gz)

stat_windows.go @0ea7e94raw · 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
}