Made bot token private, oops

This commit is contained in:
Sean Wang
2019-03-20 15:41:29 -04:00
parent 2fa9a827e0
commit acc70a76a0
3 changed files with 4 additions and 3 deletions

2
.gitignore vendored
View File

@@ -1,6 +1,6 @@
# Seans Stuff
/.idea
bot_token.config
BotToken.py
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]

0
__init__.py Normal file
View File

View File

@@ -1,9 +1,10 @@
from discord.ext.commands import Bot
from discord import Game
import random
from BotToken import BotToken
BOT_PREFIX = ("+")
TOKEN = "NTU3NzI5Mjg2MDQ4NzEwNjY5.D3MmEw.aYERBIbNoxcwesqF6tTaxcV_ahg"
BOT_PREFIX = "+"
TOKEN = BotToken().token
client = Bot(command_prefix=BOT_PREFIX)