1
mirror of https://github.com/rclone/rclone synced 2024-11-13 12:09:47 +01:00
rclone/vendor/github.com/a8m/tree/stat_unsupported.go

10 lines
152 B
Go
Raw Normal View History

2017-07-27 00:00:20 +02:00
//+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
}