rclone/vendor/github.com/djherbis/times/use_generic_stat.go
2017-11-20 12:36:50 +00:00

11 lines
213 B
Go

// +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
}