12 lines
179 B
Python
12 lines
179 B
Python
__all__ = ("router",)
|
|
|
|
from aiogram import Router
|
|
from .commands import router as commands_router
|
|
|
|
router = Router(name=__name__)
|
|
|
|
router.include_routers(
|
|
commands_router,
|
|
)
|
|
|