Skip to content
Snippets Groups Projects
Select Git revision
22 results Searching

S3.php

Blame
  • mount_windows.go 483 B
    package commands
    
    import (
    	"errors"
    
    	cmds "github.com/ipfs/go-ipfs/commands"
    
    	cmdkit "gx/ipfs/QmUyfy4QSr3NXym4etEiRyxBLqqAeKHJuRdi8AACxg63fZ/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)
    	},
    }