mirror of
https://github.com/rclone/rclone.git
synced 2024-11-29 20:04:52 +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
|
||
|
}
|