mirror of
https://github.com/ipfs/kubo.git
synced 2025-08-06 11:31:54 +08:00
19 lines
407 B
Go
19 lines
407 B
Go
package commands
|
|
|
|
import (
|
|
"errors"
|
|
|
|
cmds "github.com/ipfs/go-ipfs-cmds"
|
|
)
|
|
|
|
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.ResponseEmitter, env cmds.Environment) error {
|
|
return errors.New("Mount isn't compatible with Windows yet")
|
|
},
|
|
}
|