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