diff options
Diffstat (limited to 'weed/command/mount_darwin.go')
| -rw-r--r-- | weed/command/mount_darwin.go | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/weed/command/mount_darwin.go b/weed/command/mount_darwin.go new file mode 100644 index 000000000..f0a5581e7 --- /dev/null +++ b/weed/command/mount_darwin.go @@ -0,0 +1,13 @@ +package command + +import ( + "github.com/seaweedfs/fuse" +) + +func osSpecificMountOptions() []fuse.MountOption { + return []fuse.MountOption{} +} + +func checkMountPointAvailable(dir string) bool { + return true +} |
