mirror of
https://github.com/ipfs/kubo.git
synced 2025-09-16 12:07:11 +08:00

dependencies are vendored into Godeps/_workspace and commit versions are recorded in Godeps.json update datastore to e89f0511 update go.crypto
20 lines
553 B
Go
20 lines
553 B
Go
package main
|
|
|
|
import (
|
|
"errors"
|
|
"github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/gonuts/flag"
|
|
"github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/jbenet/commander"
|
|
)
|
|
|
|
var cmdIpfsMount = &commander.Command{
|
|
UsageLine: "mount",
|
|
Short: "Mount an ipfs read-only mountpoint.",
|
|
Long: `Not yet implemented on windows.`,
|
|
Run: mountCmd,
|
|
Flag: *flag.NewFlagSet("ipfs-mount", flag.ExitOnError),
|
|
}
|
|
|
|
func mountCmd(c *commander.Command, inp []string) error {
|
|
return errors.New("mount not yet implemented on windows")
|
|
}
|