mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-12-04 19:19:44 +00:00
24 lines
419 B
Go
24 lines
419 B
Go
|
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()
|
||
|
}
|