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

16 lines
265 B
Go
Raw Normal View History

package checkpoint
import "github.com/urfave/cli/v2"
var Commands = []*cli.Command{
{
Name: "checkpoint",
Aliases: []string{"cpt"},
Usage: "commands for managing checkpoint syncing",
Subcommands: []*cli.Command{
latestCmd,
saveCmd,
},
},
}