mirror of
https://github.com/rclone/rclone.git
synced 2025-01-23 21:17:31 +08:00
9 lines
175 B
Go
9 lines
175 B
Go
|
//go:build unix && !linux
|
||
|
|
||
|
package nfs
|
||
|
|
||
|
// Turn the diskHandler into a symlink cache
|
||
|
func (dh *diskHandler) makeSymlinkCache() error {
|
||
|
return ErrorSymlinkCacheNotSupported
|
||
|
}
|