prysm-pulse/cmd/prysmctl/deprecated/cmd.go

13 lines
234 B
Go
Raw Normal View History

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