vendor: add github.com/a8m/tree

This commit is contained in:
Nick Craig-Wood 2017-07-26 23:00:20 +01:00
parent da9926d574
commit bfef0bc2e9
19 changed files with 1302 additions and 1 deletions

9
vendor/github.com/a8m/tree/stat_unsupported.go generated vendored Normal file
View file

@ -0,0 +1,9 @@
//+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
}