12 lines
310 B
Python
12 lines
310 B
Python
from aiogram import Router
|
|
|
|
from app.bot.handlers import referral as referral_handlers
|
|
from app.bot.handlers import start as start_handlers
|
|
|
|
|
|
def build_root_router() -> Router:
|
|
root = Router()
|
|
root.include_router(start_handlers.router)
|
|
root.include_router(referral_handlers.router)
|
|
return root
|