mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-02 16:02:53 +01:00
e877f3e724
- feat(idm): Added monitoring - feat(nexus): Refactor GRPC base client - fix(nexus): Logging fixes - feat(hub): Extend logging - feat(hub): Extend logging 2 internal commit(s) GitOrigin-RevId: 01de4153dd9c0edc2e5954563733085249a4551c
17 lines
457 B
Python
17 lines
457 B
Python
load("@pip_modules//:requirements.bzl", "requirement")
|
|
|
|
py_library(
|
|
name = "aioclient",
|
|
srcs = glob(["**/*.py"]),
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
requirement("grpcio"),
|
|
"//idm/api/proto:idm_proto_py",
|
|
requirement("aiogrpcclient"),
|
|
requirement("aiokit"),
|
|
"//nexus/hub/proto:hub_grpc_py",
|
|
"//nexus/hub/proto:hub_proto_py",
|
|
"//nexus/models/proto:models_proto_py",
|
|
],
|
|
)
|