Deleted mysql support, redis password, webhook, keyboard constructors, filters, loguru.
Added support of decorators in handlers Added function to notify admins on startup
This commit is contained in:
14
utils/notify_admins.py
Normal file
14
utils/notify_admins.py
Normal file
@@ -0,0 +1,14 @@
|
||||
import logging
|
||||
|
||||
from aiogram import Dispatcher
|
||||
|
||||
from data.config import admins
|
||||
|
||||
|
||||
async def on_startup_notify(dp: Dispatcher):
|
||||
for admin in admins:
|
||||
try:
|
||||
await dp.bot.send_message(admin, "Бот Запущен")
|
||||
|
||||
except Exception as err:
|
||||
logging.exception(err)
|
||||
Reference in New Issue
Block a user