8000 add BotAdapter to __init__ for botbuilder-core · openvelora/botbuilder-python@fd52698 · GitHub
[go: up one dir, main page]

Skip to content

Commit fd52698

Browse files
committed
add BotAdapter to __init__ for botbuilder-core
1 parent d3f6509 commit fd52698

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

libraries/botbuilder-core/botbuilder/core/__init__.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,13 @@
55
# license information.
66
# --------------------------------------------------------------------------
77

8-
8+
from .bot_adapter import BotAdapter
99
from .bot_framework_adapter import BotFrameworkAdapter, BotFrameworkAdapterSettings
1010
from .bot_context import BotContext
1111
from .middleware_set import Middleware, MiddlewareSet
1212

13-
__all__ = ['BotContext',
13+
__all__ = ['BotAdapter',
14+
'BotContext',
1415
'BotFrameworkAdapter',
1516
'BotFrameworkAdapterSettings',
1617
'Middleware',

0 commit comments

Comments
 (0)
0