8 lines
168 B
Python
8 lines
168 B
Python
from aiogram import Bot
|
|
|
|
async def notify(bot: Bot, chat_id: int, text: str):
|
|
try:
|
|
await bot.send_message(chat_id, text)
|
|
except Exception:
|
|
pass
|