prysm-pulse/shared/bls/BUILD.bazel
Raul Jordan f2bc9e0352
BLS Public API (#676)
* public bls api

* added basic tests

* merge master
2018-10-18 00:44:00 -05:00

15 lines
346 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "go_default_library",
srcs = ["bls.go"],
importpath = "github.com/prysmaticlabs/prysm/shared/bls",
visibility = ["//visibility:public"],
)
go_test(
name = "go_default_test",
srcs = ["bls_test.go"],
embed = [":go_default_library"],
)