BaseConfig.py 232 B

12345678910111213
  1. from embedchain.helper_classes.json_serializable import JSONSerializable
  2. class BaseConfig(JSONSerializable):
  3. """
  4. Base config.
  5. """
  6. def __init__(self):
  7. pass
  8. def as_dict(self):
  9. return vars(self)