mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
17 lines
449 B
Python
17 lines
449 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "wait",
|
|
srcs = [
|
|
"doc.go",
|
|
"wait.go",
|
|
],
|
|
importmap = "peridot.resf.org/vendor/k8s.io/apimachinery/pkg/util/wait",
|
|
importpath = "k8s.io/apimachinery/pkg/util/wait",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//vendor/k8s.io/apimachinery/pkg/util/clock",
|
|
"//vendor/k8s.io/apimachinery/pkg/util/runtime",
|
|
],
|
|
)
|