mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-31 23:41:22 +00:00
e7b94123ce
* Add interface for spanner * Add MockSpanner for future testing * Add comment * gazelle
13 lines
428 B
Python
13 lines
428 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["iface.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/slasher/detection/attestations/iface",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//slasher/detection/attestations/types:go_default_library",
|
|
"@com_github_prysmaticlabs_ethereumapis//eth/v1alpha1:go_default_library",
|
|
],
|
|
)
|