mirror of
https://github.com/kubernetes-sigs/descheduler.git
synced 2026-01-26 21:31:18 +01:00
18 lines
385 B
Python
Vendored
18 lines
385 B
Python
Vendored
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 = [
|
|
"functions.go",
|
|
],
|
|
importpath = "github.com/google/cel-go/interpreter/functions",
|
|
deps = [
|
|
"//common/functions:go_default_library",
|
|
],
|
|
)
|