Fixed circular import.

This commit is contained in:
2026-04-09 12:28:06 +02:00
parent d74534965c
commit a17a790b61
3 changed files with 11 additions and 7 deletions

9
bot_instance.py Normal file
View File

@@ -0,0 +1,9 @@
from discord.ext import commands
import discord
import threading
intents = discord.Intents.default()
bot = commands.Bot(command_prefix="!", intents=intents)
bot.tracked_games = []
bot.tracked_games_lock = threading.Lock()