mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-10 19:51:20 +00:00
16 lines
549 B
Python
16 lines
549 B
Python
|
load("@prysm//tools/go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "go_default_library",
|
||
|
srcs = ["beacon_block.go"],
|
||
|
importpath = "github.com/prysmaticlabs/prysm/proto/eth/v1alpha1/wrapper",
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = [
|
||
|
"//proto/eth/v1alpha1:go_default_library",
|
||
|
"//proto/interfaces:go_default_library",
|
||
|
"//shared/copyutil:go_default_library",
|
||
|
"@com_github_prysmaticlabs_eth2_types//:go_default_library",
|
||
|
"@org_golang_google_protobuf//proto:go_default_library",
|
||
|
],
|
||
|
)
|