FEAT: Added Destiny 2 Module

DOC: Changed things to ignore any __init__.py
DOC: Updated to support Destiny 2
This commit is contained in:
Dan
2024-06-25 20:06:10 -04:00
parent 8509bcc98f
commit 338752b31a
4 changed files with 242 additions and 7 deletions

View File

@@ -6,6 +6,10 @@ load_dotenv()
config = {
'DISCORD_TOKEN': os.getenv('DISCORD_TOKEN'),
'GUILD_ID': int(os.getenv('DISCORD_GUILD_ID')),
'DISCORD_CHANNEL_ID': int(os.getenv('DISCORD_CHANNEL_ID')),
'BUNGIE_API_KEY': os.getenv('BUNGIE_API_KEY'),
'OAUTH_URL': os.getenv('OAUTH_URL'),
'OAUTH_CLIENT_ID': os.getenv('OAUTH_CLIENT_ID'),
'modules': {
'currency': {
'enabled': True
@@ -15,6 +19,9 @@ config = {
},
'birthday': {
'enabled': True
},
'destiny2': {
'enabled': True
}
}
}