2019-10-27 16:12:10 +00:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/seaweedfs/fuse"
|
|
|
|
)
|
|
|
|
|
|
|
|
func osSpecificMountOptions() []fuse.MountOption {
|
|
|
|
return []fuse.MountOption{}
|
|
|
|
}
|
2019-11-14 06:26:59 +00:00
|
|
|
|
|
|
|
func checkMountPointAvailable(dir string) bool {
|
|
|
|
return true
|
|
|
|
}
|