Files
tg-admin-bot/notify.py
2026-02-07 21:34:24 +03:00

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