mirror of
https://github.com/rclone/rclone.git
synced 2024-11-22 05:07:51 +08:00
9 lines
155 B
Go
9 lines
155 B
Go
//go:build !windows
|
|
|
|
package file
|
|
|
|
// FindUnusedDriveLetter does nothing except on Windows.
|
|
func FindUnusedDriveLetter() (driveLetter uint8) {
|
|
return 0
|
|
}
|