forked from Pavel_Durov/python_bot
add alarm of job fix
This commit is contained in:
parent
78759e9a8a
commit
9cbe80b9ed
@ -3,10 +3,11 @@ from create_bot import bot, dp
|
||||
from sqdb import user, session
|
||||
|
||||
@dp.message_handler(commands=['alarm'])
|
||||
async def notify_chats(message: types.Message):
|
||||
async def notify_chats():
|
||||
for chats in session.query(user.chat_id).distinct():
|
||||
session.close()
|
||||
await bot.send_message(chats,'<b>Ведутся пажилые работы,\n Ожидайте...</b>')
|
||||
await bot.send_message(chats,'<b>Ведутся пажилые работы,\n Ожидайте...</b>')
|
||||
await bot.send_message(226765676, 'рассылка завершена')
|
||||
|
||||
def register_handlers_alarm(dp: Dispatcher):
|
||||
dp.register_message_handler(notify_chats)
|
Loading…
Reference in New Issue
Block a user