mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-23 12:07:17 +00:00
18 lines
304 B
Go
18 lines
304 B
Go
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)
|
|
}
|
|
}
|