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