mirror of
https://github.com/openmax-server/server.git
synced 2026-05-22 19:41:41 +03:00
21 lines
667 B
Python
21 lines
667 B
Python
from .main import MainProcessors
|
|
from .auth import AuthProcessors
|
|
from .search import SearchProcessors
|
|
from .history import HistoryProcessors
|
|
from .assets import AssetsProcessors
|
|
from .chats import ChatsProcessors
|
|
from .contacts import ContactsProcessors
|
|
from .messages import MessagesProcessors
|
|
from .sessions import SessionsProcessors
|
|
|
|
class Processors(MainProcessors,
|
|
AuthProcessors,
|
|
SearchProcessors,
|
|
HistoryProcessors,
|
|
AssetsProcessors,
|
|
ChatsProcessors,
|
|
ContactsProcessors,
|
|
MessagesProcessors,
|
|
SessionsProcessors):
|
|
pass
|