github.com/zignig/go-ipfs@v0.0.0-20141111235910-c9e5fdf55a52/cmd/ipfs/mount_windows.go (about) 1 package main 2 3 import ( 4 "errors" 5 "github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/gonuts/flag" 6 "github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/jbenet/commander" 7 ) 8 9 var cmdIpfsMount = &commander.Command{ 10 UsageLine: "mount", 11 Short: "Mount an ipfs read-only mountpoint.", 12 Long: `Not yet implemented on windows.`, 13 Run: mountCmd, 14 Flag: *flag.NewFlagSet("ipfs-mount", flag.ExitOnError), 15 } 16 17 func mountCmd(c *commander.Command, inp []string) error { 18 return errors.New("mount not yet implemented on windows") 19 }