mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 17:14:44 +01:00
c1aaff220d
This is an OS style file system abstraction with directory caching used in mount, cmount, serve webdav and serve http.
12 lines
172 B
Go
12 lines
172 B
Go
// +build !linux,!darwin,!freebsd
|
|
|
|
package vfs
|
|
|
|
import (
|
|
"github.com/spf13/pflag"
|
|
)
|
|
|
|
// add any extra platform specific flags
|
|
func platformFlags(flags *pflag.FlagSet) {
|
|
}
|