mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-08 02:31:19 +00:00
15 lines
220 B
Go
15 lines
220 B
Go
|
package db
|
||
|
|
||
|
import "github.com/urfave/cli/v2"
|
||
|
|
||
|
var Commands = []*cli.Command{
|
||
|
{
|
||
|
Name: "db",
|
||
|
Usage: "commands to work with the prysm beacon db",
|
||
|
Subcommands: []*cli.Command{
|
||
|
queryCmd,
|
||
|
bucketsCmd,
|
||
|
},
|
||
|
},
|
||
|
}
|