mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-12-26 04:00:55 +00:00
15 lines
408 B
Text
15 lines
408 B
Text
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "concurrent",
|
|
srcs = [
|
|
"executor.go",
|
|
"go_above_19.go",
|
|
"go_below_19.go",
|
|
"log.go",
|
|
"unbounded_executor.go",
|
|
],
|
|
importmap = "peridot.resf.org/vendor/github.com/modern-go/concurrent",
|
|
importpath = "github.com/modern-go/concurrent",
|
|
visibility = ["//visibility:public"],
|
|
)
|