neo-go/cli/main.go

18 lines
207 B
Go
Raw Normal View History

2018-01-26 18:04:13 +00:00
package main
import (
"fmt"
"os"
2018-01-26 18:04:13 +00:00
"github.com/nspcc-dev/neo-go/cli/app"
2018-01-26 18:04:13 +00:00
)
func main() {
ctl := app.New()
if err := ctl.Run(os.Args); err != nil {
fmt.Fprintln(ctl.ErrWriter, err)
os.Exit(1)
}
}