blob: 7b1c6b75b2d542ebc0c0674546a15fe84a275759 [file] [log] [blame]
load("//tools:defs.bzl", "go_library", "go_test")
package(
default_visibility = ["//visibility:public"],
licenses = ["notice"],
)
go_library(
name = "pool",
srcs = [
"pool.go",
],
deps = [
"//pkg/sync",
],
)
go_test(
name = "pool_test",
size = "small",
srcs = [
"pool_test.go",
],
library = ":pool",
)