1
mirror of https://github.com/rclone/rclone synced 2024-09-21 19:31:31 +02:00
rclone/vendor/github.com/a8m/tree/stat_unsupported.go
2017-07-26 23:06:48 +01:00

10 lines
152 B
Go

//+build plan9 windows
package tree
import "os"
func getStat(fi os.FileInfo) (ok bool, inode, device, uid, gid uint64) {
return false, 0, 0, 0, 0
}