1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
import os import discord import dotenv from bigresult import BigResultPlus import random from discord.ext import commands dotenv.load_dotenv() TOKEN = os.getenv('TOKEN') bot = BigResultPlus() bot.initialize_commands() bot.run(TOKEN)