mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-10 19:51:20 +00:00
ce5fde1f57
Former-commit-id: 2547a60befd85276fb4fb702a4277f3e1dbd9c48 [formerly 9d23a567fbf09e8a19dcbb2ca39b8c8678ce879f] Former-commit-id: 8c1a555faf070f4070c50dae4913bdd615c66ee7
23 lines
608 B
Python
23 lines
608 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/sharding/utils",
|
|
visibility = ["//sharding:__subpackages__"],
|
|
deps = [
|
|
"//sharding/params:go_default_library",
|
|
"@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"],
|
|
)
|