mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-21 18:37:45 +08:00
14 lines
290 B
Go
14 lines
290 B
Go
// +build !nofuse,openbsd !nofuse,netbsd !nofuse,plan9
|
|
|
|
package node
|
|
|
|
import (
|
|
"errors"
|
|
|
|
core "github.com/ipfs/go-ipfs/core"
|
|
)
|
|
|
|
func Mount(node *core.IpfsNode, fsdir, nsdir string) error {
|
|
return errors.New("FUSE not supported on OpenBSD or NetBSD. See #5334 (https://git.io/fjMuC).")
|
|
}
|