mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-28 14:17:17 +00:00
bfbf693660
Co-authored-by: Kasey Kirkham <kasey@users.noreply.github.com>
16 lines
265 B
Go
16 lines
265 B
Go
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,
|
|
},
|
|
},
|
|
}
|