Files
tidb/util/hack/BUILD.bazel
2022-06-07 15:22:30 +08:00

22 lines
436 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "hack",
srcs = ["hack.go"],
importpath = "github.com/pingcap/tidb/util/hack",
visibility = ["//visibility:public"],
)
go_test(
name = "hack_test",
srcs = [
"hack_test.go",
"main_test.go",
],
embed = [":hack"],
deps = [
"//testkit/testsetup",
"@org_uber_go_goleak//:goleak",
],
)