prysm-pulse/sharding/params/BUILD.bazel

16 lines
441 B
Python
Raw Normal View History

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 = ["//visibility:public"],
deps = ["@com_github_ethereum_go_ethereum//common:go_default_library"],
)
go_test(
name = "go_default_test",
srcs = ["config_test.go"],
embed = [":go_default_library"],
)