add user_hello dialog

This commit is contained in:
2025-09-23 14:19:50 +03:00
parent 656c8ac2c4
commit f043d5a0a7
8 changed files with 82 additions and 4 deletions

6
app/handlers/__init__.py Normal file
View File

@@ -0,0 +1,6 @@
from aiogram import Router
from .user_handlers import router as user_router
handlers_router = Router(name="handlers")
handlers_router.include_router(user_router)