8 lines
165 B
Python
8 lines
165 B
Python
from discord.ext import commands
|
|
import discord
|
|
|
|
intents = discord.Intents.default()
|
|
bot = commands.Bot(command_prefix="!", intents=intents)
|
|
|
|
bot.tracked_games = []
|