mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 09:04:52 +01:00
8 lines
207 B
Go
8 lines
207 B
Go
package cmount
|
|
|
|
// ProvidedBy returns true if the rclone build for the given OS
|
|
// provides support for lib/cgo-fuse
|
|
func ProvidedBy(osName string) bool {
|
|
return osName == "windows" || osName == "darwin"
|
|
}
|