mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-28 14:17:17 +00:00
cac5d0f234
* 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>
15 lines
268 B
Go
15 lines
268 B
Go
package weaksubjectivity
|
|
|
|
import "github.com/urfave/cli/v2"
|
|
|
|
var Commands = []*cli.Command{
|
|
{
|
|
Name: "weak-subjectivity",
|
|
Aliases: []string{"ws"},
|
|
Usage: "commands dealing with weak subjectivity",
|
|
Subcommands: []*cli.Command{
|
|
checkpointCmd,
|
|
},
|
|
},
|
|
}
|