package commands import ( "errors" cmds "github.com/ipfs/go-ipfs/commands" "github.com/ipfs/go-ipfs/core" ) var MountCmd = &cmds.Command{ Helptext: cmds.HelpText{ Tagline: "Not yet implemented on Windows", ShortDescription: "Not yet implemented on Windows. :(", }, Run: func(req cmds.Request, res cmds.Response) { res.SetError(errors.New("Mount isn't compatible with Windows yet"), cmds.ErrNormal) }, } 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 }