mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 13:18:57 +00:00
c30913266c
* remove a few references that tie the validator binary to the go-ethereum crypto library * fixes * remove unused vars * gazelle * nosec on this crypto library
20 lines
480 B
Python
20 lines
480 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"customflags.go",
|
|
"defaults.go",
|
|
"flags.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/shared/cmd",
|
|
visibility = ["//visibility:public"],
|
|
deps = ["@com_github_urfave_cli//:go_default_library"],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = ["customflags_test.go"],
|
|
embed = [":go_default_library"],
|
|
)
|