cli: allow to use vm parse directly

This commit is contained in:
Evgenii Stratonikov 2020-08-04 09:40:06 +03:00
parent ef53a45e7a
commit 227c6a2caa
3 changed files with 54 additions and 8 deletions

View file

@ -5,6 +5,7 @@ import (
"github.com/nspcc-dev/neo-go/cli/server"
"github.com/nspcc-dev/neo-go/cli/smartcontract"
"github.com/nspcc-dev/neo-go/cli/util"
"github.com/nspcc-dev/neo-go/cli/vm"
"github.com/nspcc-dev/neo-go/cli/wallet"
"github.com/nspcc-dev/neo-go/pkg/config"
@ -21,6 +22,7 @@ func main() {
ctl.Commands = append(ctl.Commands, smartcontract.NewCommands()...)
ctl.Commands = append(ctl.Commands, wallet.NewCommands()...)
ctl.Commands = append(ctl.Commands, vm.NewCommands()...)
ctl.Commands = append(ctl.Commands, util.NewCommands()...)
if err := ctl.Run(os.Args); err != nil {
panic(err)