12 lines
395 B
Python
12 lines
395 B
Python
from config.cogs import __cogs__
|
|
from utils import embed
|
|
|
|
try:
|
|
from config.config import __token__, __prefix__, __greet_channel__, __api_key__
|
|
except ImportError:
|
|
import os
|
|
__token__ = os.environ.get('DISCORD_TOKEN')
|
|
__prefix__ = os.environ.get('DISCORD_PREFIX')
|
|
__greet_channel__ = os.environ.get('DISCORD_GREET_CHANNEL')
|
|
__api_key__ = os.environ.get('DISCORD_API_KEY')
|