erigon-pulse/cmd/integration/main.go

18 lines
304 B
Go
Raw Normal View History

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