mirror of
https://github.com/rclone/rclone.git
synced 2024-11-23 07:07:44 +08:00
11da2a6c9b
The purpose of this is to make it easier to maintain and eventually to allow the rclone backends to be re-used in other projects without having to use the rclone configuration system. The new code layout is documented in CONTRIBUTING.
10 lines
241 B
Go
10 lines
241 B
Go
// +build plan9
|
|
|
|
package fserrors
|
|
|
|
// isClosedConnErrorPlatform reports whether err is an error from use
|
|
// of a closed network connection using platform specific error codes.
|
|
func isClosedConnErrorPlatform(err error) bool {
|
|
return false
|
|
}
|