7 lines
199 B
Python
7 lines
199 B
Python
"""Task config."""
|
|
from jarvis_core.config import Config
|
|
|
|
|
|
class TaskConfig(Config):
|
|
REQUIRED = ["token", "mongo"]
|
|
OPTIONAL = {"log_level": "WARNING", "twitter": None, "reddit": None}
|