mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-04 00:44:27 +00:00
bc3d673ea4
* Begin cleanup for E2E * Parellize testing * Add comments * Add comment
14 lines
420 B
Python
14 lines
420 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
testonly = True,
|
|
srcs = ["params.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/endtoend/params",
|
|
visibility = ["//endtoend:__subpackages__"],
|
|
deps = [
|
|
"@com_github_ethereum_go_ethereum//common:go_default_library",
|
|
"@io_bazel_rules_go//go/tools/bazel:go_default_library",
|
|
],
|
|
)
|