mirror of
https://github.com/rclone/rclone.git
synced 2024-11-08 01:25:14 +01:00
10 lines
152 B
Go
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
|
|
}
|