mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-23 11:57:18 +00:00
402799a584
* add nonblocking simple lru * method * add in missing tests, fix panic
18 lines
384 B
Python
18 lines
384 B
Python
load("@prysm//tools/go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"list.go",
|
|
"lru.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/v4/cache/nonblocking",
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = ["lru_test.go"],
|
|
embed = [":go_default_library"],
|
|
)
|