Files
serverbot/app/handlers/events.py

13 lines
324 B
Python

from app.settings import bot, secrets
from app.utils.commands import set_commands
from app import views
async def start_bot():
await set_commands(bot)
await bot.send_message(secrets.admin_id, views.start_bot_message())
async def stop_bot():
await bot.send_message(secrets.admin_id, views.stop_bot_message())