mirror of
https://github.com/rclone/rclone.git
synced 2025-12-15 15:53:41 +00:00
Move all backends into backend directory
This commit is contained in:
13
backend/local/read_device_other.go
Normal file
13
backend/local/read_device_other.go
Normal file
@@ -0,0 +1,13 @@
|
||||
// Device reading functions
|
||||
|
||||
// +build !darwin,!dragonfly,!freebsd,!linux,!netbsd,!openbsd,!solaris
|
||||
|
||||
package local
|
||||
|
||||
import "os"
|
||||
|
||||
// readDevice turns a valid os.FileInfo into a device number,
|
||||
// returning devUnset if it fails.
|
||||
func readDevice(fi os.FileInfo) uint64 {
|
||||
return devUnset
|
||||
}
|
||||
Reference in New Issue
Block a user