mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 08:20:23 +00:00
ff3e84ad67
updating kubernetes to 1.28.0 in the main repo. Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
19 lines
449 B
Python
19 lines
449 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
package(
|
|
default_visibility = ["//visibility:public"],
|
|
licenses = ["notice"], # Apache 2.0
|
|
)
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"debug.go",
|
|
],
|
|
importpath = "github.com/google/cel-go/common/debug",
|
|
deps = [
|
|
"//common:go_default_library",
|
|
"@org_golang_google_genproto_googleapis_api//expr/v1alpha1:go_default_library",
|
|
],
|
|
)
|