mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-27 21:57:16 +00:00
15 lines
533 B
Python
15 lines
533 B
Python
|
load("@prysm//tools/go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "go_default_library",
|
||
|
srcs = ["migration.go"],
|
||
|
importpath = "github.com/prysmaticlabs/prysm/proto/migration",
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = [
|
||
|
"@com_github_golang_protobuf//proto:go_default_library",
|
||
|
"@com_github_pkg_errors//:go_default_library",
|
||
|
"@com_github_prysmaticlabs_ethereumapis//eth/v1:go_default_library",
|
||
|
"@com_github_prysmaticlabs_ethereumapis//eth/v1alpha1:go_default_library",
|
||
|
],
|
||
|
)
|