mirror of
https://github.com/ipfs/kubo.git
synced 2025-06-03 12:16:18 +08:00

- Modified Godeps/Godeps.json by hand - [TEST] Updated welcome docs hash to sharness - [TEST] Updated contact doc - [TEST] disabled breaking test (t0080-repo refs local)
26 lines
574 B
Go
26 lines
574 B
Go
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
|
|
}
|