github.com/zignig/go-ipfs@v0.0.0-20141111235910-c9e5fdf55a52/core/commands2/mount_windows.go (about)

     1  package commands
     2  
     3  import (
     4  	"errors"
     5  
     6  	cmds "github.com/jbenet/go-ipfs/commands"
     7  )
     8  
     9  var ipfsMount = &cmds.Command{
    10  	Description: "Not yet implemented on Windows",
    11  	Help:        `Not yet implemented on Windows. :(`,
    12  
    13  	Run: func(req cmds.Request) (interface{}, error) {
    14  		return errors.New("Mount isn't compatible with Windows yet"), nil
    15  	},
    16  }