15 lines
303 B
Python
15 lines
303 B
Python
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)
|