Spaces:
Build error
Build error
Validify-testbot-1
/
botbuilder-python
/libraries
/botbuilder-integration-aiohttp
/botbuilder
/integration
/aiohttp
/__init__.py
| # coding=utf-8 | |
| # -------------------------------------------------------------------------- | |
| # Copyright (c) Microsoft Corporation. All rights reserved. | |
| # Licensed under the MIT License. See License.txt in the project root for | |
| # license information. | |
| # -------------------------------------------------------------------------- | |
| from .aiohttp_channel_service import aiohttp_channel_service_routes | |
| from .aiohttp_channel_service_exception_middleware import aiohttp_error_middleware | |
| from .bot_framework_http_client import BotFrameworkHttpClient | |
| from .bot_framework_http_adapter import BotFrameworkHttpAdapter | |
| from .cloud_adapter import CloudAdapter | |
| from .configuration_service_client_credential_factory import ( | |
| ConfigurationServiceClientCredentialFactory, | |
| ) | |
| from .configuration_bot_framework_authentication import ( | |
| ConfigurationBotFrameworkAuthentication, | |
| ) | |
| __all__ = [ | |
| "aiohttp_channel_service_routes", | |
| "aiohttp_error_middleware", | |
| "BotFrameworkHttpClient", | |
| "BotFrameworkHttpAdapter", | |
| "CloudAdapter", | |
| "ConfigurationServiceClientCredentialFactory", | |
| "ConfigurationBotFrameworkAuthentication", | |
| ] | |