1
0
mirror of https://github.com/danog/MadelineProto.git synced 2025-01-22 23:11:19 +01:00
MadelineProto/class/__init__.py

12 lines
201 B
Python
Raw Normal View History

2015-03-18 03:13:36 +09:00
from . import chat, user, message, contact
from .chat import Chat
from .user import User
from .message import Message
from .contact import Contact
__all__ = ['Chat', 'User', 'Message', 'Contact']