563c3a4baa
Use github.com/chzyer/readline for readline capabilities (including history and ANSI escape sequences handling).
26 lines
502 B
Go
26 lines
502 B
Go
package vm
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/chzyer/readline"
|
|
vmcli "github.com/nspcc-dev/neo-go/pkg/vm/cli"
|
|
"github.com/urfave/cli"
|
|
)
|
|
|
|
// NewCommands returns 'vm' command.
|
|
func NewCommands() []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.NewWithConfig(true, os.Exit, &readline.Config{})
|
|
return p.Run()
|
|
}
|