mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 12:41:24 +00:00
15 lines
428 B
Python
15 lines
428 B
Python
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "schema",
|
||
|
srcs = [
|
||
|
"generated.pb.go",
|
||
|
"group_version.go",
|
||
|
"interfaces.go",
|
||
|
],
|
||
|
importmap = "peridot.resf.org/vendor/k8s.io/apimachinery/pkg/runtime/schema",
|
||
|
importpath = "k8s.io/apimachinery/pkg/runtime/schema",
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = ["//vendor/github.com/gogo/protobuf/proto"],
|
||
|
)
|