mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-15 10:50:18 +00:00
5a66991bb3
updating the kubernetes release to the latest in main go.mod Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
32 lines
611 B
Python
32 lines
611 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
|
|
|
package(
|
|
default_visibility = ["//visibility:public"],
|
|
licenses = ["notice"], # Apache 2.0
|
|
)
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"container.go",
|
|
],
|
|
importpath = "github.com/google/cel-go/common/containers",
|
|
deps = [
|
|
"//common/ast:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
size = "small",
|
|
srcs = [
|
|
"container_test.go",
|
|
],
|
|
embed = [
|
|
":go_default_library",
|
|
],
|
|
deps = [
|
|
"//common/ast:go_default_library",
|
|
],
|
|
)
|