1
0
mirror of https://github.com/rclone/rclone.git synced 2025-01-24 12:56:36 +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
}