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