fusego/internal/fuseshim/options_darwin.go

14 lines
239 B
Go
Raw Normal View History

2015-07-23 08:53:23 +03:00
package fuseshim
2015-07-23 08:52:04 +03:00
func localVolume(conf *mountConfig) error {
conf.options["local"] = ""
return nil
}
func volumeName(name string) MountOption {
return func(conf *mountConfig) error {
conf.options["volname"] = name
return nil
}
}