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