mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-09 19:21:19 +00:00
4d5d229f0f
Former-commit-id: bbd5b46e7f64f762350d6fb496492207e70d7130 [formerly 43a37f7139b7d1d90f0c27a7406b63bdf390ad96] Former-commit-id: bb7a2ff0a7619f8de0bd38cd2c9eb0de7c189edb
22 lines
549 B
Python
22 lines
549 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"customflags.go",
|
|
"flags.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/geth-sharding/shared/cmd",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"@com_github_ethereum_go_ethereum//node:go_default_library",
|
|
"@com_github_urfave_cli//:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = ["customflags_test.go"],
|
|
embed = [":go_default_library"],
|
|
)
|