jarvis-bot/jarvis/config.py
2022-06-09 19:12:20 -06:00

17 lines
413 B
Python

"""Load the config for JARVIS"""
from jarvis_core.config import Config
class JarvisConfig(Config):
REQUIRED = ("token", "mongo", "urls", "redis")
OPTIONAL = {
"sync": False,
"log_level": "WARNING",
"cogs": None,
"events": True,
"gitlab_token": None,
"max_messages": 1000,
"twitter": None,
"reddit": None,
"rook_token": None,
}