mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-09 11:11:20 +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>
16 lines
412 B
Python
16 lines
412 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"checkpoint.go",
|
|
"cmd.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/v3/cmd/prysmctl/weaksubjectivity",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//api/client/beacon:go_default_library",
|
|
"@com_github_urfave_cli_v2//:go_default_library",
|
|
],
|
|
)
|