diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ea8061..af7c76a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Команда `/time` - Кеширование в команду `/weather`. Погода обновляется раз в 30 минут +- Достижения (команда `/achievements`) ### Изменено - Модуль Заменен `requests` на `httpx` diff --git a/src/bot/handlers.py b/src/bot/handlers.py index 96641e5..1f375b8 100644 --- a/src/bot/handlers.py +++ b/src/bot/handlers.py @@ -74,6 +74,7 @@ KeyboardButton("Погода"), KeyboardButton("Обменник"), KeyboardButton("Гайд"), + KeyboardButton("Достижения"), ] ) diff --git a/src/main.py b/src/main.py index c791feb..c85122e 100644 --- a/src/main.py +++ b/src/main.py @@ -23,6 +23,7 @@ def configure_bot_commands(): BotCommand("exchanger", "Обменник"), BotCommand("transfer", "Перекидка предметов"), BotCommand("shop", "Магазин"), + BotCommand("achievements", "Достижения"), BotCommand("weather", "Погода"), BotCommand("items", "Информация о всех приметах"), BotCommand("casino", "Казино"),