add common dialogs

This commit is contained in:
2025-09-25 21:13:04 +03:00
parent cbe1919343
commit 250a349209
7 changed files with 30 additions and 18 deletions

View File

@@ -0,0 +1,7 @@
from aiogram import Router
from .profile.dialogs import user_profile_dialog
common_router = Router(name="common dialogs")
common_router.include_router(user_profile_dialog)