Files
t6_mem0/embedchain/loaders/base_loader.py

13 lines
246 B
Python

from embedchain.helpers.json_serializable import JSONSerializable
class BaseLoader(JSONSerializable):
def __init__(self):
pass
def load_data(self, url):
"""
Implemented by child classes
"""
pass