mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-05 14:31:22 +00:00
16 lines
408 B
Python
16 lines
408 B
Python
|
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"],
|
||
|
)
|