7 lines
207 B
Go
7 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"
|
|
}
|