12 lines
209 B
Python
12 lines
209 B
Python
__all__ = ('router',)
|
|
|
|
from aiogram import Router
|
|
|
|
from .instructions import router as instructions_router
|
|
|
|
router = Router(name='instructions_main_router')
|
|
|
|
router.include_routers(
|
|
instructions_router,
|
|
)
|