erigon-pulse/cmd/integration/main.go

19 lines
305 B
Go
Raw Normal View History

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