kubo/cmd/ipfs/mount_windows.go

20 lines
457 B
Go

package main
import (
"errors"
"github.com/gonuts/flag"
"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")
}