mount_windows.go 407 Bytes
Newer Older
1 2 3 4 5
package commands

import (
	"errors"

Jakub Sztandera's avatar
Jakub Sztandera committed
6
	cmds "github.com/ipfs/go-ipfs-cmds"
7 8
)

9
var MountCmd = &cmds.Command{
Steven Allen's avatar
Steven Allen committed
10
	Helptext: cmds.HelpText{
rht's avatar
rht committed
11
		Tagline:          "Not yet implemented on Windows.",
12 13
		ShortDescription: "Not yet implemented on Windows. :(",
	},
14

Overbool's avatar
Overbool committed
15 16
	Run: func(req *cmds.Request, res cmds.ResponseEmitter, env cmds.Environment) error {
		return errors.New("Mount isn't compatible with Windows yet")
17 18
	},
}