mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-18 07:48:46 +00:00
13 lines
442 B
Python
13 lines
442 B
Python
|
load("@prysm//tools/go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "go_default_library",
|
||
|
srcs = ["metrics.go"],
|
||
|
importpath = "github.com/prysmaticlabs/prysm/validator/client/metrics",
|
||
|
visibility = ["//validator/client:__subpackages__"],
|
||
|
deps = [
|
||
|
"@com_github_prometheus_client_golang//prometheus:go_default_library",
|
||
|
"@com_github_prometheus_client_golang//prometheus/promauto:go_default_library",
|
||
|
],
|
||
|
)
|