prysm-pulse/cmd/prysmctl/deprecated/cmd.go
terencechain 76fec1799e
Replace Empty Slice Literals with Nil Slices (#13093)
Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
2023-10-23 16:36:11 +00:00

13 lines
230 B
Go

package deprecated
import (
"github.com/prysmaticlabs/prysm/v4/cmd/prysmctl/deprecated/checkpoint"
"github.com/urfave/cli/v2"
)
var Commands []*cli.Command
func init() {
Commands = append(Commands, checkpoint.Commands...)
}