erigon-pulse/cmd/integration/main.go
Alex Sharov 0be3044b7e
rename (#1978)
* rename

* rename "make grpc"

* rename "abi bindings templates"

* rename "abi bindings templates"
2021-05-20 19:25:53 +01:00

20 lines
312 B
Go

package main
import (
"fmt"
"os"
"github.com/ledgerwatch/erigon/cmd/integration/commands"
"github.com/ledgerwatch/erigon/cmd/utils"
)
func main() {
rootCmd := commands.RootCommand()
ctx, _ := utils.RootContext()
if err := rootCmd.ExecuteContext(ctx); err != nil {
fmt.Println(err)
os.Exit(1)
}
}