mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-08 10:41:19 +00:00
11 lines
395 B
Python
11 lines
395 B
Python
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "go_default_library",
|
||
|
srcs = ["interface.go"],
|
||
|
importpath = "github.com/prysmaticlabs/prysm/validator/db/iface",
|
||
|
# Other packages must use github.com/prysmaticlabs/prysm/validator/db.Database alias.
|
||
|
visibility = ["//validator/db:__subpackages__"],
|
||
|
deps = ["//proto/slashing:go_default_library"],
|
||
|
)
|