selena/config.py
Dan 49a7588699 FEAT: Added XP
REF: Fixed up currency so the cooldown is presented to the user.
2024-06-24 23:20:03 -04:00

18 lines
309 B
Python

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
},
'xp': {
'enabled': True
}
}
}