mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-08 18:51:19 +00:00
15 lines
266 B
Go
15 lines
266 B
Go
|
package checkpointsync
|
||
|
|
||
|
import "github.com/urfave/cli/v2"
|
||
|
|
||
|
var Commands = []*cli.Command{
|
||
|
{
|
||
|
Name: "checkpoint-sync",
|
||
|
Aliases: []string{"cpt-sync"},
|
||
|
Usage: "commands for managing checkpoint sync",
|
||
|
Subcommands: []*cli.Command{
|
||
|
downloadCmd,
|
||
|
},
|
||
|
},
|
||
|
}
|