mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-03 16:37:39 +00:00
fac5e19a17
* Add promptutil to shared/promptutil * fixes * comment * Implement promptutil into accounts-v2 * gaz * Merge branch 'master' of github.com:prysmaticlabs/prysm into implement-promptutil * Apply suggestions from code review * gofmt and fix all scanned input * Merge refs/heads/master into implement-promptutil
24 lines
644 B
Python
24 lines
644 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_test")
|
|
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",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = ["validate_test.go"],
|
|
embed = [":go_default_library"],
|
|
)
|