mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-11-30 06:52:55 +01:00
dd23846059
- [nexus] Switch bot - [bot] Added extra receivers functionality GitOrigin-RevId: 68fc32d3e79ff411758f54f435fe8680fc42dead
17 lines
438 B
Python
17 lines
438 B
Python
load("@pip_modules//:requirements.bzl", "requirement")
|
|
|
|
py_library(
|
|
name = "aioclient",
|
|
srcs = glob(["**/*.py"]),
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
requirement("grpcio"),
|
|
"//idm/api/proto:proto_py",
|
|
requirement("aiogrpcclient"),
|
|
requirement("aiokit"),
|
|
"//nexus/hub/proto:grpc_py",
|
|
"//nexus/hub/proto:proto_py",
|
|
"//nexus/models/proto:proto_py",
|
|
],
|
|
)
|