mirror of
https://github.com/rclone/rclone.git
synced 2024-11-30 04:15:26 +01:00
12 lines
177 B
Go
12 lines
177 B
Go
|
// +build !linux,!darwin,!freebsd
|
||
|
|
||
|
package mountlib
|
||
|
|
||
|
import (
|
||
|
"github.com/spf13/pflag"
|
||
|
)
|
||
|
|
||
|
// add any extra platform specific flags
|
||
|
func platformFlags(flags *pflag.FlagSet) {
|
||
|
}
|