22 lines
547 B
Python
22 lines
547 B
Python
from aiogram import Router
|
|
|
|
from .commands import router as cmd_routers
|
|
from .messages import router as messages_routers
|
|
from .form_utils import router as form_routers
|
|
from .union_utills import router as union_routers
|
|
from .custom import router as custom_routers
|
|
|
|
# Настройка экспорта и роутера
|
|
__all__ = ("router",)
|
|
router: Router = Router(name=__name__)
|
|
|
|
# Подключение роутеров
|
|
router.include_routers(
|
|
custom_routers,
|
|
#cmd_routers,
|
|
|
|
#messages_routers,
|
|
#form_routers,
|
|
#union_routers,
|
|
)
|