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