1
mirror of https://github.com/rclone/rclone synced 2024-12-03 13:14:37 +01:00
rclone/lib/file/driveletter_other.go
2021-09-09 20:43:59 +03:00

10 lines
174 B
Go

//go:build !windows
// +build !windows
package file
// FindUnusedDriveLetter does nothing except on Windows.
func FindUnusedDriveLetter() (driveLetter uint8) {
return 0
}