1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-06-19 09:52:03 +08:00

transitioned ipfs2 -> ipfs

This commit is contained in:
Juan Batiz-Benet
2014-11-18 02:39:48 -08:00
parent ad3f3e003f
commit 5aaa45db9a
38 changed files with 4 additions and 4 deletions

View File

@ -0,0 +1,18 @@
package commands
import (
"errors"
cmds "github.com/jbenet/go-ipfs/commands"
)
var mountCmd = &cmds.Command{
Helptext: cmds.HelpText{
Tagline: "Not yet implemented on Windows",
ShortDescription: "Not yet implemented on Windows. :(",
},
Run: func(req cmds.Request) (interface{}, error) {
return errors.New("Mount isn't compatible with Windows yet"), nil
},
}