mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-04 01:54:28 +00:00
878cc063b0
* Fixing headers stuck in StageSync * Removed ./dev folder and cleaned up code * Removing the logs subscription tests
24 lines
359 B
Go
24 lines
359 B
Go
package commands
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var (
|
|
reqId int
|
|
)
|
|
|
|
func init() {
|
|
rootCmd.PersistentFlags().IntVar(&reqId, "req-id", 0, "Defines number of request id")
|
|
}
|
|
|
|
var rootCmd = &cobra.Command{
|
|
Use: "devnettest",
|
|
Short: "Devnettest root command",
|
|
}
|
|
|
|
// Execute executes the root command.
|
|
func Execute() error {
|
|
return rootCmd.Execute()
|
|
}
|