Третий стрим

This commit is contained in:
2024-03-17 21:28:49 +04:00
parent a498a04481
commit 17cd64bdbc
29 changed files with 618 additions and 50 deletions

View File

@ -1,12 +1,12 @@
from app.settings import bot, Secrets
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())
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())
await bot.send_message(secrets.admin_id, views.stop_bot_message())