Files
dom5bot/bot_instance.py
2026-04-09 12:28:06 +02:00

10 lines
224 B
Python

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()