mirror of https://github.com/prometheus/prometheus
14 lines
425 B
Python
14 lines
425 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
package(default_visibility = ["//:generators"])
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["generator.go"],
|
|
importpath = "github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway/generator",
|
|
deps = [
|
|
"//protoc-gen-grpc-gateway/descriptor:go_default_library",
|
|
"@io_bazel_rules_go//proto/wkt:compiler_plugin_go_proto",
|
|
],
|
|
)
|