1package fuse 2 3import "github.com/winfsp/cgofuse/fuse" 4 5func Mount(mountSrc, mountDst string, opts []string) { 6 fs := &Fs{RootFolder: mountSrc} 7 host := fuse.NewFileSystemHost(fs) 8 go host.Mount(mountDst, opts) 9} 10 11