mirror of
https://github.com/ipfs/kubo.git
synced 2026-03-07 01:08:08 +08:00
* Updates go-ipfs-cmds to try to get the tests to pass on travis. * While we're at it, fix duplicate gx deps. License: MIT Signed-off-by: Steven Allen <steven@stebalien.com>
20 lines
528 B
Go
20 lines
528 B
Go
package commands
|
|
|
|
import (
|
|
"errors"
|
|
|
|
cmds "gx/ipfs/QmQtQrtNioesAWtrx8csBvfY37gTe94d6wQ3VikZUjxD39/go-ipfs-cmds"
|
|
cmdkit "gx/ipfs/Qmde5VP1qUkyQXKCfmEUA7bP64V2HAptbJ7phuPp7jXWwg/go-ipfs-cmdkit"
|
|
)
|
|
|
|
var MountCmd = &cmds.Command{
|
|
Helptext: cmdkit.HelpText{
|
|
Tagline: "Not yet implemented on Windows.",
|
|
ShortDescription: "Not yet implemented on Windows. :(",
|
|
},
|
|
|
|
Run: func(req *cmds.Request, res cmds.ResponseEmitter, env cmds.Environment) error {
|
|
return errors.New("Mount isn't compatible with Windows yet")
|
|
},
|
|
}
|