We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b08fa71 commit 391fdb8Copy full SHA for 391fdb8
gapic/templates/%namespace/%name_%version/%sub/__init__.py.j2
@@ -11,6 +11,9 @@ from . import {{ subpackage }}
11
{% for service in api.services.values()|sort(attribute='name')
12
if service.meta.address.subpackage == api.subpackage_view %}
13
from .services.{{ service.name|snake_case }} import {{ service.client_name }}
14
+{% if 'grpc' in opts.transport %}
15
+from .services.{{ service.name|snake_case }} import {{ service.async_client_name }}
16
+{% endif %}
17
{% endfor %}
18
19
{# Import messages and enums from each proto.
0 commit comments