mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-22 19:50:36 +00:00
0be3044b7e
* rename * rename "make grpc" * rename "abi bindings templates" * rename "abi bindings templates"
20 lines
312 B
Go
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)
|
|
}
|
|
}
|