mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-24 20:37:17 +00:00
15 lines
470 B
Python
15 lines
470 B
Python
|
load("@prysm//tools/go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "go_default_library",
|
||
|
testonly = True,
|
||
|
srcs = ["mock.go"],
|
||
|
importpath = "github.com/prysmaticlabs/prysm/beacon-chain/operations/voluntaryexits/mock",
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = [
|
||
|
"//beacon-chain/state:go_default_library",
|
||
|
"//proto/prysm/v1alpha1:go_default_library",
|
||
|
"@com_github_prysmaticlabs_eth2_types//:go_default_library",
|
||
|
],
|
||
|
)
|