mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-21 10:27:46 +08:00
Instead of trying to export the `errNeedFuseVersion` type, just use string matching. It's good enough for testing and the alternative was annoying. License: MIT Signed-off-by: Steven Allen <steven@stebalien.com>
14 lines
202 B
Go
14 lines
202 B
Go
// +build !windows,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")
|
|
}
|