summaryrefslogtreecommitdiff
path: root/vendor/github.com/authzed/cel-go/common/operators/BUILD.bazel
blob: 869c82e79fac3be4b879322fe471c422cbe80b49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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 = [
        "operators.go",
    ],
    importpath = "github.com/authzed/cel-go/common/operators",
)