neoneo-go/cli/vm/vm.go

24 lines
419 B
Go
Raw Normal View History

package vm
import (
vmcli "github.com/CityOfZion/neo-go/pkg/vm/cli"
"github.com/urfave/cli"
)
// NewCommand creates a new VM command.
func NewCommand() cli.Command {
return cli.Command{
Name: "vm",
Usage: "start the virtual machine",
Action: startVMPrompt,
Flags: []cli.Flag{
cli.BoolFlag{Name: "debug, d"},
},
}
}
func startVMPrompt(ctx *cli.Context) error {
p := vmcli.New()
return p.Run()
}