8 lines
374 B
Python
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] |