diff options
| author | Joshua Liu <joshua.liu@sourceobby.com> | 2025-11-09 15:38:29 -0500 |
|---|---|---|
| committer | Joshua Liu <joshua.liu@sourceobby.com> | 2025-11-09 15:38:29 -0500 |
| commit | fecffeb0013a26867ed445d476b076667a3090f2 (patch) | |
| tree | 5d30a258b35f8addc04e54541b7be8a943fd73e6 /main.py | |
| parent | 2a343208d8e2aaecd010b2ddfbf7c78094e28efa (diff) | |
feat: rewrote main.py to just call bigresult.py
Diffstat (limited to 'main.py')
| -rw-r--r-- | main.py | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -1,4 +1,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') +intents = discord.Intents.all() + +client = BigResultPlus(intents=intents, command_prefix="!") # This represents our connection with Discord + +client.run(TOKEN) # This actually starts our bot |
