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
+13
View File
@@ -91,3 +91,16 @@ async def travels_callback(
)
await callback.answer()
@router.callback_query(
F.data == "menu_help",
RegisteredCallback(),
StateFilter(None),
)
async def help_callback(callback: CallbackQuery) -> None:
if not isinstance(callback.message, Message):
return
await callback.message.answer(messages.HELP_MESSAGE)
await callback.answer()