mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-23 20:07:17 +00:00
16 lines
387 B
Python
16 lines
387 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["math_helper.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/shared/mathutil",
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
size = "small",
|
|
srcs = ["math_helper_test.go"],
|
|
embed = [":go_default_library"],
|
|
)
|