mirror of
https://github.com/mudler/luet.git
synced 2025-06-28 08:18:46 +00:00
13 lines
177 B
Go
13 lines
177 B
Go
// +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
|
|
}
|