summaryrefslogtreecommitdiffhomepage
path: root/pkg/context/BUILD
blob: f33e23bf7df187fa5fde883eac38b9fe21a56c57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
load("//tools:defs.bzl", "go_library")

package(licenses = ["notice"])

go_library(
    name = "context",
    srcs = ["context.go"],
    visibility = ["//:sandbox"],
    deps = [
        "//pkg/log",
    ],
)