...
1load("@io_bazel_rules_go//go:def.bzl", "go_library")
2
3package(default_visibility = ["//visibility:public"])
4
5go_library(
6 name = "unannotatedecho",
7 srcs = [
8 "api_unannotated_echo_service.go",
9 "client.go",
10 "configuration.go",
11 "model_examplepb_numeric_enum.go",
12 "model_examplepb_unannotated_embedded.go",
13 "model_examplepb_unannotated_nested_message.go",
14 "model_examplepb_unannotated_simple_message.go",
15 "model_protobuf_any.go",
16 "model_rpc_status.go",
17 "response.go",
18 ],
19 importpath = "github.com/grpc-ecosystem/grpc-gateway/v2/examples/internal/clients/unannotatedecho",
20 deps = [
21 "@com_github_antihax_optional//:optional",
22 "@org_golang_x_oauth2//:oauth2",
23 ],
24)
25
26alias(
27 name = "go_default_library",
28 actual = ":unannotatedecho",
29 visibility = ["//examples:__subpackages__"],
30)
View as plain text