mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 17:14:44 +01:00
12 lines
442 B
Go
12 lines
442 B
Go
//go:build !((linux && cgo && cmount) || (darwin && cgo && cmount) || (freebsd && cgo && cmount) || (windows && cmount))
|
|
// +build !linux !cgo !cmount
|
|
// +build !darwin !cgo !cmount
|
|
// +build !freebsd !cgo !cmount
|
|
// +build !windows !cmount
|
|
|
|
// Package cmount implements a FUSE mounting system for rclone remotes.
|
|
//
|
|
// Build for cmount for unsupported platforms to stop go complaining
|
|
// about "no buildable Go source files".
|
|
package cmount
|