mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
15 lines
306 B
Python
Generated
15 lines
306 B
Python
Generated
load("@rules_go//go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "util",
|
|
srcs = ["util.go"],
|
|
importpath = "github.com/github/codeql-go/extractor/util",
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
go_test(
|
|
name = "util_test",
|
|
srcs = ["util_test.go"],
|
|
embed = [":util"],
|
|
)
|