kubo/fuse/readonly/mount_unix.go
2015-03-05 18:00:36 +02:00

16 lines
395 B
Go

// +build linux darwin freebsd
// +build !nofuse
package readonly
import (
core "github.com/jbenet/go-ipfs/core"
mount "github.com/jbenet/go-ipfs/fuse/mount"
)
// Mount mounts ipfs at a given location, and returns a mount.Mount instance.
func Mount(ipfs *core.IpfsNode, mountpoint string) (mount.Mount, error) {
fsys := NewFileSystem(ipfs)
return mount.NewMount(ipfs, fsys, mountpoint)
}