base_loader.py 246 B

123456789101112
  1. from embedchain.helpers.json_serializable import JSONSerializable
  2. class BaseLoader(JSONSerializable):
  3. def __init__(self):
  4. pass
  5. def load_data(self, url):
  6. """
  7. Implemented by child classes
  8. """
  9. pass