...
1load("@io_bazel_rules_go//go:def.bzl", "go_library")
2
3package(default_visibility = ["//visibility:public"])
4
5go_library(
6 name = "go_default_library",
7 srcs = [
8 "api_unannotated_echo_service.go",
9 "client.go",
10 "configuration.go",
11 "model_examplepb_unannotated_simple_message.go",
12 "model_protobuf_any.go",
13 "model_runtime_error.go",
14 "response.go",
15 ],
16 importpath = "github.com/grpc-ecosystem/grpc-gateway/examples/internal/clients/unannotatedecho",
17 deps = [
18 "@com_github_antihax_optional//:go_default_library",
19 "@org_golang_x_oauth2//:go_default_library",
20 ],
21)
View as plain text