feat: Added notes creation, view and deletion, added route planning, added location list with current weather and nearby locations, code improvements and fixes

This commit is contained in:
ITQ
2024-03-26 07:49:50 +03:00
parent 65719a61ef
commit 88dfe1704d
24 changed files with 1571 additions and 301 deletions
+4 -2
View File
@@ -6,7 +6,7 @@ from aiogram import Bot, Dispatcher
from aiogram.enums import ParseMode
from aiogram.fsm.storage.redis import RedisStorage
from app.callbacks import menu, profile, travels
from app.callbacks import location, menu, notes, profile, travel
from app.config import Config
from app.handlers import (
create_travel_command,
@@ -40,7 +40,9 @@ async def main() -> None:
travels_command.router,
menu.router,
profile.router,
travels.router,
travel.router,
location.router,
notes.router,
)
await bot.delete_webhook(drop_pending_updates=True)