1
0
mirror of https://github.com/eternnoir/pyTelegramBotAPI.git synced 2023-08-10 21:12:57 +03:00

Update webhooks listeners.

This commit is contained in:
_run 2022-07-07 15:09:02 +05:00
parent 7b8c98d731
commit e353572c03
3 changed files with 8 additions and 1 deletions

View File

@ -24,7 +24,7 @@ import string
# webhooks module # webhooks module
from telebot.extensions.webhooks import SyncWebhookListener from telebot.extensions import SyncWebhookListener
logger = logging.getLogger('TeleBot') logger = logging.getLogger('TeleBot')

View File

@ -0,0 +1,7 @@
from .webhooks import SyncWebhookListener
__all__ = [
'SyncWebhookListener'
]