chat_moderator_bot/handlers/__init__.py
2024-07-17 23:35:45 +03:00

8 lines
374 B
Python

from handlers.ban_words import router as rban_words
from handlers.commands import router as rcommands
from handlers.come_back import router as rcome_back
from handlers.message import router as rmessage
from handlers.group import router as rgroup
from handlers.ban_media import router as rban_media
routers = [rcommands, rban_words, rcome_back, rmessage, rgroup, rban_media]