mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-16 14:58:46 +00:00
9ac88d11da
Former-commit-id: d22d05529bb0050b8a03053a28d876e3e458bbff [formerly 284a04699110aa285a42f5b0ad244ca9bd77d2df] Former-commit-id: 83cd9c8a48fb5ce9c57ff8ef6c2b1741a4d05130
17 lines
468 B
Python
17 lines
468 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["config.go"],
|
|
importpath = "github.com/prysmaticlabs/geth-sharding/sharding/params",
|
|
visibility = ["//sharding:__subpackages__"],
|
|
deps = ["@com_github_ethereum_go_ethereum//common:go_default_library"],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
size = "small",
|
|
srcs = ["config_test.go"],
|
|
embed = [":go_default_library"],
|
|
)
|