MTPyroger/pyrogram/client/handlers/__init__.py

32 lines
1.4 KiB
Python
Raw Normal View History

2018-04-06 15:46:34 +00:00
# Pyrogram - Telegram MTProto API Client Library for Python
2020-02-01 13:04:33 +00:00
# Copyright (C) 2017-2020 Dan <https://github.com/delivrance>
2018-04-06 15:46:34 +00:00
#
# This file is part of Pyrogram.
#
# Pyrogram is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Pyrogram is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with Pyrogram. If not, see <http://www.gnu.org/licenses/>.
2018-05-20 10:53:00 +00:00
from .callback_query_handler import CallbackQueryHandler
from .deleted_messages_handler import DeletedMessagesHandler
2018-05-23 12:27:17 +00:00
from .disconnect_handler import DisconnectHandler
2018-11-09 12:08:28 +00:00
from .inline_query_handler import InlineQueryHandler
2018-05-20 10:53:00 +00:00
from .message_handler import MessageHandler
from .poll_handler import PollHandler
2018-05-20 10:53:00 +00:00
from .raw_update_handler import RawUpdateHandler
from .user_status_handler import UserStatusHandler
__all__ = [
"MessageHandler", "DeletedMessagesHandler", "CallbackQueryHandler", "RawUpdateHandler", "DisconnectHandler",
"UserStatusHandler", "InlineQueryHandler", "PollHandler"
]