This commit is contained in:
@@ -11,12 +11,11 @@ API_TOKEN = os.getenv("BOT_TOKEN")
|
|||||||
bot = Bot(token=API_TOKEN)
|
bot = Bot(token=API_TOKEN)
|
||||||
dp = Dispatcher(bot)
|
dp = Dispatcher(bot)
|
||||||
|
|
||||||
@dp.message_handler(commands=['start', 'help'])
|
|
||||||
async def send_welcome(message: Message):
|
|
||||||
await message.reply("Привет! Я твой личный Pomodoro-бот. Выбирай действие:", reply_markup=menu_kb)
|
await message.reply("Привет! Я твой личный Pomodoro-бот. Выбирай действие:", reply_markup=menu_kb)
|
||||||
|
|
||||||
@dp.callback_query_handler(Text(equals=["pomodoro", "shortbreak", "longbreak", "stop"]))
|
|
||||||
async def handle_callback(call: types.CallbackQuery):
|
|
||||||
if call.data == "pomodoro":
|
if call.data == "pomodoro":
|
||||||
await timer_manager.start_timer(call.from_user.id, 25*60, call.message.chat.id, 'Pomodoro')
|
await timer_manager.start_timer(call.from_user.id, 25*60, call.message.chat.id, 'Pomodoro')
|
||||||
await call.message.answer("Начался 25-минутный Pomodoro! 🔥")
|
await call.message.answer("Начался 25-минутный Pomodoro! 🔥")
|
||||||
|
|||||||
Reference in New Issue
Block a user