prysm-pulse/cmd/prysmctl/db/cmd.go
kasey 007c776d8a
tool to search db for a key prefix (#11417)
* tool to query db by a key prefix

* cleanup

* lint and fmt

* db/kv public visibility

We've discussed before that Bazel visibility constraints don't
accomplish much in go, so I'm phasing them out in places where they get
in the way.

* derp

Co-authored-by: Kasey Kirkham <kasey@users.noreply.github.com>
Co-authored-by: Radosław Kapka <rkapka@wp.pl>
Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
2022-10-26 21:28:02 +00:00

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,
},
},
}