mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
16 lines
594 B
Python
16 lines
594 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["gateway.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/validator/rpc/gateway",
|
|
visibility = ["//validator:__subpackages__"],
|
|
deps = [
|
|
"//proto/validator/accounts/v2:ethereum_validator_account_gateway_proto",
|
|
"@com_github_grpc_ecosystem_grpc_gateway//runtime:go_default_library",
|
|
"@com_github_rs_cors//:go_default_library",
|
|
"@com_github_sirupsen_logrus//:go_default_library",
|
|
"@org_golang_google_grpc//:go_default_library",
|
|
],
|
|
)
|