chat_moderator_bot/handlers/__init__.py

8 lines
374 B
Python
Raw Permalink Normal View History

2024-07-17 20:35:45 +00:00
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]