First commit

This commit is contained in:
2026-01-23 04:45:55 +07:00
commit 0b251c5967
118 changed files with 9580 additions and 0 deletions

21
bot/handlers/__init__.py Normal file
View File

@@ -0,0 +1,21 @@
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,
)