prysm-pulse/cmd/prysmctl/deprecated/cmd.go
kasey cac5d0f234
giving commands more clear names per issue #11287 (#11360)
* giving commands more clear names per issue #11287

* mark the top-level help text for cpt deprecated

Co-authored-by: Kasey Kirkham <kasey@users.noreply.github.com>
2022-08-31 13:18:35 -05:00

13 lines
234 B
Go

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...)
}