mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-12 04:30:04 +00:00
14e1f08208
* integrate backup webhooks * pass slasher tests * fix node * cmd * gaz * read test passes * radek feedback * added comment Co-authored-by: Victor Farazdagi <simple.square@gmail.com>
14 lines
455 B
Python
14 lines
455 B
Python
load("@prysm//tools/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 = [
|
|
"//shared/backuputil:go_default_library",
|
|
"//validator/db/kv:go_default_library",
|
|
],
|
|
)
|