mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-22 02:47:48 +08:00
12 lines
199 B
Go
12 lines
199 B
Go
package node
|
|
|
|
import (
|
|
"github.com/ipfs/kubo/core"
|
|
)
|
|
|
|
func Mount(node *core.IpfsNode, fsdir, nsdir string) error {
|
|
// TODO
|
|
// currently a no-op, but we don't want to return an error
|
|
return nil
|
|
}
|