Files
go-common/vendor/google.golang.org/grpc/health/BUILD.bazel.in

15 lines
427 B
Python
Raw Normal View History

2019-04-22 02:59:20 +00:00
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "go_default_library",
srcs = ["health.go"],
importpath = "google.golang.org/grpc/health",
visibility = ["//visibility:public"],
deps = [
"//codes:go_default_library",
"//health/grpc_health_v1:go_default_library",
"//status:go_default_library",
"@org_golang_x_net//context:go_default_library",
],
)