mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-27 21:57:16 +00:00
15 lines
537 B
Python
15 lines
537 B
Python
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "go_default_library",
|
||
|
srcs = ["attestation_utils.go"],
|
||
|
importpath = "github.com/prysmaticlabs/prysm/shared/attestationutil",
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = [
|
||
|
"@com_github_pkg_errors//:go_default_library",
|
||
|
"@com_github_prysmaticlabs_ethereumapis//eth/v1alpha1:go_default_library",
|
||
|
"@com_github_prysmaticlabs_go_bitfield//:go_default_library",
|
||
|
"@io_opencensus_go//trace:go_default_library",
|
||
|
],
|
||
|
)
|