mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-09 11:11:20 +00:00
13 lines
234 B
Go
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...)
|
||
|
}
|