mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-23 11:57:18 +00:00
9145310647
* get rid of v2 in prysm codebase * replace block2 * builds * terence comments * gazelle
15 lines
519 B
Python
15 lines
519 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["block_interfaces.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/proto/prysm/v1alpha1/block",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//proto/prysm/v1alpha1:go_default_library",
|
|
"@com_github_ferranbt_fastssz//:go_default_library",
|
|
"@com_github_prysmaticlabs_eth2_types//:go_default_library",
|
|
"@org_golang_google_protobuf//proto:go_default_library",
|
|
],
|
|
)
|