Updated .gitignore so no config files will be stored

pull/1/head
BuildTools 2021-01-12 19:47:30 +01:00
parent a54662f5fc
commit d1cb5260a3
2 changed files with 11 additions and 2 deletions

7
.gitignore vendored
View File

@ -1,5 +1,8 @@
# Exclude IDE Files
.idea
# Project exclude paths
/venv/
# Exclude VENV
/venv/
# Exclude Config Files
token

6
run.py Normal file
View File

@ -0,0 +1,6 @@
import discord
file = open("TOKEN", "r")
token = file.read()
file.close()