mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-24 20:37:17 +00:00
16 lines
445 B
Python
16 lines
445 B
Python
|
load("@prysm//tools/go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "go_default_library",
|
||
|
srcs = ["format.go"],
|
||
|
importpath = "github.com/prysmaticlabs/prysm/validator/keymanager/remote-utils",
|
||
|
visibility = [
|
||
|
"//validator:__pkg__",
|
||
|
"//validator:__subpackages__",
|
||
|
],
|
||
|
deps = [
|
||
|
"//validator/accounts/petnames:go_default_library",
|
||
|
"@com_github_logrusorgru_aurora//:go_default_library",
|
||
|
],
|
||
|
)
|