mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-09 11:11:20 +00:00
26 lines
927 B
Python
26 lines
927 B
Python
|
load("@prysm//tools/go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "go_default_library",
|
||
|
srcs = [
|
||
|
"handlers.go",
|
||
|
"server.go",
|
||
|
"structs.go",
|
||
|
],
|
||
|
importpath = "github.com/prysmaticlabs/prysm/v4/beacon-chain/rpc/prysm/beacon",
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = [
|
||
|
"//beacon-chain/blockchain:go_default_library",
|
||
|
"//beacon-chain/core/helpers:go_default_library",
|
||
|
"//beacon-chain/db:go_default_library",
|
||
|
"//beacon-chain/rpc/eth/shared:go_default_library",
|
||
|
"//beacon-chain/state/stategen:go_default_library",
|
||
|
"//beacon-chain/sync:go_default_library",
|
||
|
"//config/params:go_default_library",
|
||
|
"//network/http:go_default_library",
|
||
|
"//time/slots:go_default_library",
|
||
|
"@com_github_ethereum_go_ethereum//common/hexutil:go_default_library",
|
||
|
"@io_opencensus_go//trace:go_default_library",
|
||
|
],
|
||
|
)
|