Initial version of Telegram admin bot

This commit is contained in:
root
2026-02-07 21:34:24 +03:00
commit 492e3bd3cf
9 changed files with 1027 additions and 0 deletions

7
notify.py Normal file
View File

@@ -0,0 +1,7 @@
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