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