1
0
mirror of https://github.com/rclone/rclone.git synced 2025-01-24 12:56:36 +02: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
}