Files
codeql/go/extractor/util/BUILD.bazel
2024-08-05 10:13:14 +02:00

25 lines
526 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 = [
"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 = [
"semver_test.go",
"util_test.go",
],
embed = [":util"],
deps = ["@org_golang_x_mod//semver"],
)