| 1 | package node |
| 2 | |
| 3 | import ( |
| 4 | "github.com/ipfs/kubo/core" |
| 5 | ) |
| 6 | |
| 7 | func Mount(node *core.IpfsNode, fsdir, nsdir, mfsdir string) error { |
| 8 | // TODO |
| 9 | // currently a no-op, but we don't want to return an error |
| 10 | return nil |
| 11 | } |
| 12 | |
| 13 | func Unmount(node *core.IpfsNode) { |
| 14 | // TODO |
| 15 | // currently a no-op |
| 16 | return |
| 17 | } |