типо да

This commit is contained in:
admin
2025-09-08 00:40:18 +07:00
commit 0f05fc8455
83 changed files with 5775 additions and 0 deletions

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

@@ -0,0 +1,15 @@
from aiogram import Router
#from .commands import router as cmd_routers
from .messages import router as messages_routers
from .secret import router as secret_routers
# Настройка экспорта и роутера
__all__ = ("router",)
router: Router = Router(name=__name__)
# Подключение роутеров
router.include_routers(
#cmd_routers,
secret_routers,
messages_routers,
)