1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-09-18 05:31:35 +08:00
Files
kubo/core/commands/mount_windows.go
2014-11-18 06:15:00 -08:00

19 lines
383 B
Go

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
},
}