mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 12:41:24 +00:00
13 lines
357 B
Python
13 lines
357 B
Python
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "cache",
|
||
|
srcs = [
|
||
|
"cache.go",
|
||
|
"lru.go",
|
||
|
],
|
||
|
importmap = "peridot.resf.org/vendor/go.temporal.io/sdk/internal/common/cache",
|
||
|
importpath = "go.temporal.io/sdk/internal/common/cache",
|
||
|
visibility = ["//vendor/go.temporal.io/sdk:__subpackages__"],
|
||
|
)
|