mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-07 10:12:19 +00:00
15 lines
425 B
Python
15 lines
425 B
Python
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||
|
|
||
|
package(default_testonly = True)
|
||
|
|
||
|
go_library(
|
||
|
name = "go_default_library",
|
||
|
srcs = ["feed_mock.go"],
|
||
|
importpath = "github.com/prysmaticlabs/prysm/shared/p2p/mock",
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = [
|
||
|
"@com_github_ethereum_go_ethereum//event:go_default_library",
|
||
|
"@com_github_golang_mock//gomock:go_default_library",
|
||
|
],
|
||
|
)
|