blob: f0a5581e7667085d9c989e3ba2e37be8294d2423 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package command
import (
"github.com/seaweedfs/fuse"
)
func osSpecificMountOptions() []fuse.MountOption {
return []fuse.MountOption{}
}
func checkMountPointAvailable(dir string) bool {
return true
}
|