8 lines
175 B
Python
8 lines
175 B
Python
from aiogram import Router
|
|
|
|
from .profile.dialogs import user_profile_dialog
|
|
|
|
common_router = Router(name="common dialogs")
|
|
|
|
common_router.include_router(user_profile_dialog)
|