from aiogram import Router from . import ( initialize, start, ) router = Router() router.include_routers( initialize.router, start.router, )