rclone/vendor/github.com/djherbis/times/use_generic_stat.go

11 lines
213 B
Go
Raw Normal View History

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