Add spotify search (only search), default menu

This commit is contained in:
BarsTiger
2023-10-16 20:17:10 +03:00
parent c63d8795aa
commit b515fdfd65
18 changed files with 256 additions and 4 deletions

View File

@@ -4,10 +4,11 @@ from rich import print
async def runner():
from .common import dp, bot
from . import handlers
from . import handlers, callbacks
dp.include_router(
handlers.router
dp.include_routers(
handlers.router,
callbacks.router,
)
await bot.delete_webhook(drop_pending_updates=True)