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