mirror of
https://github.com/rclone/rclone.git
synced 2024-11-22 16:34:30 +01:00
9 lines
153 B
Go
9 lines
153 B
Go
|
//+build !windows
|
||
|
|
||
|
package file
|
||
|
|
||
|
// FindUnusedDriveLetter does nothing except on Windows.
|
||
|
func FindUnusedDriveLetter() (driveLetter uint8) {
|
||
|
return 0
|
||
|
}
|