mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-06 01:32:18 +00:00
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",
|
||
|
],
|
||
|
)
|