mirror of
https://github.com/chai2010/advanced-go-programming-book.git
synced 2025-05-25 21:52:21 +00:00
14 lines
439 B
Python
Executable File
14 lines
439 B
Python
Executable File
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",
|
|
"@com_github_golang_protobuf//protoc-gen-go/plugin:go_default_library",
|
|
],
|
|
)
|