Files
aquabot/loadconfig.py
CramMK a653476e9c General development process
- new cog commands
- new voice cog
- new requirements.txt
- adjusted readme
- added Dockerfile for faster deployment (still WIP)
- other general things
2020-01-23 15:57:30 +00:00

13 lines
249 B
Python

"""
Gather all config data into one file
loadconfig.py then gets called in aquabot.py
"""
from config.cogs import __cogs__
try:
from config.config import __token__, __prefix__
except ImportError as e:
print(f"Error while importing: {e}")