prysm-pulse/shared/bytesutil/BUILD.bazel
Raul Jordan cec6c8de83 Standardize Naming of Shared Packages, Remove Deprecated Packages (#1435)
* rem txpool

* standardize repo shared utils, remove deprecated items

* complete

* package lvl godoc
2019-01-31 10:53:58 +08:00

15 lines
356 B
Python

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