FUSE: add os specific mount options

related to https://github.com/chrislusf/seaweedfs/issues/1094
This commit is contained in:
Chris Lu
2019-10-27 09:12:10 -07:00
parent 71eb8efd20
commit eb2172f63f
5 changed files with 37 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
package command
import (
"github.com/seaweedfs/fuse"
)
func osSpecificMountOptions() []fuse.MountOption {
return []fuse.MountOption{}
}