mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 12:57:18 +00:00
43655e6c04
* Remove verbatim strings with flag names on startup * gzl * fix visibility * gaz Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
20 lines
500 B
Python
20 lines
500 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"flags.go",
|
|
"interop.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/cmd/validator/flags",
|
|
visibility = [
|
|
"//cmd/validator:__subpackages__",
|
|
"//endtoend:__subpackages__",
|
|
"//validator:__subpackages__",
|
|
],
|
|
deps = [
|
|
"//shared/fileutil:go_default_library",
|
|
"@com_github_urfave_cli_v2//:go_default_library",
|
|
],
|
|
)
|