mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-24 11:57:44 +08:00
16 lines
265 B
Go
16 lines
265 B
Go
// +build !windows,nofuse
|
|
|
|
package node
|
|
|
|
import (
|
|
"errors"
|
|
|
|
core "github.com/ipfs/go-ipfs/core"
|
|
)
|
|
|
|
type errNeedFuseVersion error // used in tests, needed in OSX
|
|
|
|
func Mount(node *core.IpfsNode, fsdir, nsdir string) error {
|
|
return errors.New("not compiled in")
|
|
}
|