mount_darwin.go 205 B

12345678910111213
  1. package command
  2. import (
  3. "github.com/seaweedfs/fuse"
  4. )
  5. func osSpecificMountOptions() []fuse.MountOption {
  6. return []fuse.MountOption{}
  7. }
  8. func checkMountPointAvailable(dir string) bool {
  9. return true
  10. }