mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-10 03:31:20 +00:00
14 lines
393 B
Python
14 lines
393 B
Python
|
load("@prysm//tools/go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "go_default_library",
|
||
|
testonly = 1,
|
||
|
srcs = ["mock.go"],
|
||
|
importpath = "github.com/prysmaticlabs/prysm/validator/accounts/v2/testing",
|
||
|
visibility = [
|
||
|
"//validator:__pkg__",
|
||
|
"//validator:__subpackages__",
|
||
|
],
|
||
|
deps = ["@com_github_dustinkirkland_golang_petname//:go_default_library"],
|
||
|
)
|