FEAT: Added Currency

FIX: Added some files to the .gitignore
DOC: Added the config.py
This commit is contained in:
Dan
2024-06-24 20:42:30 -04:00
parent 9f02c1da5e
commit fcc1489b74
5 changed files with 130 additions and 0 deletions

14
config.py Normal file
View File

@@ -0,0 +1,14 @@
from dotenv import load_dotenv
import os
load_dotenv()
config = {
'DISCORD_TOKEN': os.getenv('DISCORD_TOKEN'),
'GUILD_ID': int(os.getenv('DISCORD_GUILD_ID')),
'modules': {
'currency': {
'enabled': True
}
}
}