mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-21 18:37:45 +08:00
This lets FUSE mounts to track whether they are active or not by tracking when fs.Serve terminates. License: MIT Signed-off-by: Stephen Whitmore <noffle@ipfs.io>
15 lines
224 B
Go
15 lines
224 B
Go
// +build linux darwin freebsd
|
|
// +build nofuse
|
|
|
|
package node
|
|
|
|
import (
|
|
"errors"
|
|
|
|
core "github.com/ipfs/go-ipfs/core"
|
|
)
|
|
|
|
func Mount(node *core.IpfsNode, fsdir, nsdir string) error {
|
|
return errors.New("not compiled in")
|
|
}
|