mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-12 04:37:50 +01:00
9ce67ec590
- feat(idm): Rename IDM-2 to IDM - feat(idm): Open IDM 3 internal commit(s) GitOrigin-RevId: e302e9b5cda18cca1adc4ae8a3d906714d222106
16 lines
419 B
Python
16 lines
419 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("aiokit"),
|
|
"//nexus/hub/proto:hub_grpc_py",
|
|
"//nexus/hub/proto:hub_proto_py",
|
|
"//nexus/models/proto:models_proto_py",
|
|
],
|
|
)
|