10 lines
224 B
Python
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()
|