mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-05-02 03:02:54 -04:00
* remove unused code * table drive tests for byte slice intersections * include all table driven tests * gazelle imports * imports
19 lines
409 B
Python
19 lines
409 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"doc.go",
|
|
"slice.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/shared/sliceutil",
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
size = "small",
|
|
srcs = ["slice_test.go"],
|
|
embed = [":go_default_library"],
|
|
)
|