Files
virtus-bot/core/events.py
T
2025-06-20 10:31:59 +07:00

8 lines
218 B
Python

from core.bot import bot
from core.tasks import sync_commands
@bot.event
async def on_ready():
print(f'{bot.user} đã tham gia vào server!')
await sync_commands.start()
print("Đã đồng bộ lệnh!")