mirror of
https://github.com/ipfs/kubo.git
synced 2025-06-01 16:05:47 +08:00
21 lines
483 B
Go
21 lines
483 B
Go
package commands
|
|
|
|
import (
|
|
"errors"
|
|
|
|
cmds "github.com/ipfs/go-ipfs/commands"
|
|
|
|
cmdkit "gx/ipfs/QmSP88ryZkHSRn1fnngAaV2Vcn63WUJzAavnRM9CVdU1Ky/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.Response) {
|
|
res.SetError(errors.New("Mount isn't compatible with Windows yet"), cmdkit.ErrNormal)
|
|
},
|
|
}
|