mirror of
https://github.com/nexus-stc/hyperboria
synced 2025-01-11 19:25:53 +01:00
dd23846059
- [nexus] Switch bot - [bot] Added extra receivers functionality GitOrigin-RevId: 68fc32d3e79ff411758f54f435fe8680fc42dead
26 lines
525 B
Python
26 lines
525 B
Python
load("@com_github_grpc_grpc//bazel:python_rules.bzl", "py_grpc_library", "py_proto_library")
|
|
load("@rules_proto//proto:defs.bzl", "proto_library")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
proto_library(
|
|
name = "proto",
|
|
srcs = [
|
|
"chat_manager_service.proto",
|
|
],
|
|
deps = [
|
|
"@com_google_protobuf//:wrappers_proto",
|
|
],
|
|
)
|
|
|
|
py_proto_library(
|
|
name = "proto_py",
|
|
deps = [":proto"],
|
|
)
|
|
|
|
py_grpc_library(
|
|
name = "grpc_py",
|
|
srcs = [":proto"],
|
|
deps = [":proto_py"],
|
|
)
|