mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-27 21:57:16 +00:00
5230af0e0c
* endtoend to testing/ * gaz Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
14 lines
430 B
Python
14 lines
430 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
testonly = True,
|
|
srcs = ["params.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/testing/endtoend/params",
|
|
visibility = ["//testing/endtoend:__subpackages__"],
|
|
deps = [
|
|
"@com_github_ethereum_go_ethereum//common:go_default_library",
|
|
"@io_bazel_rules_go//go/tools/bazel:go_default_library",
|
|
],
|
|
)
|