mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-09 11:11:20 +00:00
16 lines
422 B
Python
16 lines
422 B
Python
|
load("@prysm//tools/go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "go_default_library",
|
||
|
srcs = [
|
||
|
"endpoint_factory.go",
|
||
|
"structs.go",
|
||
|
],
|
||
|
importpath = "github.com/prysmaticlabs/prysm/validator/rpc/apimiddleware",
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = [
|
||
|
"//api/gateway/apimiddleware:go_default_library",
|
||
|
"@com_github_pkg_errors//:go_default_library",
|
||
|
],
|
||
|
)
|