Codebase list golang-github-vbatts-go-mtree / fresh-snapshots/main stat_windows.go
fresh-snapshots/main

Tree @fresh-snapshots/main (Download .tar.gz)

stat_windows.go @fresh-snapshots/mainraw · history · blame

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