Files
codeql/go/extractor/util/BUILD.bazel
2025-09-05 14:18:31 +01:00

30 lines
668 B
Python
Generated

# generated running `bazel run //go/gazelle`, do not edit
load("@rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "util",
srcs = [
"extractvendordirs.go",
"logging.go",
"registryproxy.go",
"semver.go",
"util.go",
],
importpath = "github.com/github/codeql-go/extractor/util",
visibility = ["//visibility:public"],
deps = ["@org_golang_x_mod//semver"],
)
go_test(
name = "util_test",
srcs = [
"logging_test.go",
"registryproxy_test.go",
"semver_test.go",
"util_test.go",
],
embed = [":util"],
deps = ["@org_golang_x_mod//semver"],
)