first commit
This commit is contained in:
11
app/bot/handlers/__init__.py
Normal file
11
app/bot/handlers/__init__.py
Normal file
@@ -0,0 +1,11 @@
|
||||
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
|
||||
Reference in New Issue
Block a user