neoneo-go/cli/main.go

22 lines
316 B
Go
Raw Normal View History

2018-01-26 18:04:13 +00:00
package main
import (
"os"
2018-01-26 18:04:13 +00:00
"github.com/CityOfZion/neo-go/cli/server"
"github.com/CityOfZion/neo-go/cli/smartcontract"
"github.com/urfave/cli"
2018-01-26 18:04:13 +00:00
)
func main() {
ctl := cli.NewApp()
ctl.Name = "neo-go"
2018-01-26 18:04:13 +00:00
ctl.Commands = []cli.Command{
server.NewCommand(),
smartcontract.NewCommand(),
}
ctl.Run(os.Args)
2018-01-26 18:04:13 +00:00
}