mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-05 17:22:18 +00:00
fc0585f724
* Add promptutil to shared/promptutil * fixes * comment
17 lines
482 B
Python
17 lines
482 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"prompt.go",
|
|
"validate.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/shared/promptutil",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"@com_github_logrusorgru_aurora//:go_default_library",
|
|
"@com_github_nbutton23_zxcvbn_go//:go_default_library",
|
|
"@org_golang_x_crypto//ssh/terminal:go_default_library",
|
|
],
|
|
)
|