1
0
mirror of https://github.com/rclone/rclone.git synced 2025-12-18 09:13:15 +00:00

vendor: vfs add vendor/github.com/djherbis/times

This commit is contained in:
Nick Craig-Wood
2017-11-10 10:16:38 +00:00
parent e946a8eab0
commit bb0ce0cb5f
20 changed files with 828 additions and 1 deletions

10
vendor/github.com/djherbis/times/use_generic_stat.go generated vendored Normal file
View File

@@ -0,0 +1,10 @@
// +build !windows
package times
const hasPlatformSpecificStat = false
// do not use, only here to prevent "undefined" method error.
func platformSpecficStat(name string) (Timespec, error) {
return nil, nil
}