fix routes
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-03-28 20:10:12 +05:00
parent 9e1e5c16da
commit 4183875ff8
4 changed files with 13 additions and 15 deletions

View File

@@ -2,14 +2,15 @@ from aiogram import Bot, Dispatcher, types
from aiogram.types import Message, InlineKeyboardMarkup, InlineKeyboardButton
from aiogram.utils import executor
from aiogram.dispatcher.filters import Text
from pomodoro_bot.user_manager import user_manager
from pomodoro_bot.timer_manager import timer_manager
from .user_manager import user_manager
from .timer_manager import TimerManager
import os
API_TOKEN = os.getenv("BOT_TOKEN")
bot = Bot(token=API_TOKEN)
dp = Dispatcher(bot)
timer_manager = TimerManager(bot)
menu_kb = InlineKeyboardMarkup(row_width=2)
menu_kb.add(