Files
t6_mem0/embedchain/loaders/base_loader.py
cachho 0d4ad07d7b Feat/serialize deserialize (#508)
Co-authored-by: Taranjeet Singh <reachtotj@gmail.com>
2023-09-04 01:20:18 +05:30

13 lines
244 B
Python

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