mirror of
https://github.com/eternnoir/pyTelegramBotAPI.git
synced 2023-08-10 21:12:57 +03:00
10 lines
134 B
Python
10 lines
134 B
Python
|
"""
|
||
|
A folder with all the async extensions.
|
||
|
"""
|
||
|
|
||
|
from .webhooks import AsyncWebhookListener
|
||
|
|
||
|
|
||
|
__all__ = [
|
||
|
"AsyncWebhookListener"
|
||
|
]
|