| 1 | // Stub when built with "go build -tags nofuse". Excludes windows |
| 2 | // which never has FUSE support regardless of build tags. |
| 3 | //go:build !windows && nofuse |
| 4 | |
| 5 | package node |
| 6 | |
| 7 | import ( |
| 8 | "errors" |
| 9 | |
| 10 | core "github.com/ipfs/kubo/core" |
| 11 | ) |
| 12 | |
| 13 | func Mount(node *core.IpfsNode, fsdir, nsdir, mfsdir string) error { |
| 14 | return errors.New("not compiled in") |
| 15 | } |
| 16 | |
| 17 | func Unmount(node *core.IpfsNode) { |
| 18 | return |
| 19 | } |