Files
tidb/server/handler/ttlhandler/BUILD.bazel

20 lines
526 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "ttlhandler",
srcs = ["ttl.go"],
importpath = "github.com/pingcap/tidb/server/handler/ttlhandler",
visibility = ["//visibility:public"],
deps = [
"//kv",
"//server/handler",
"//session",
"//ttl/client",
"//util/logutil",
"@com_github_gorilla_mux//:mux",
"@com_github_pingcap_errors//:errors",
"@com_github_pingcap_log//:log",
"@org_uber_go_zap//:zap",
],
)