Files
tg-admin-bot/services/notify.py

9 lines
169 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