13 lines
236 B
Python
13 lines
236 B
Python
from embedchain.helper.json_serializable import JSONSerializable
|
|
|
|
|
|
class BaseLoader(JSONSerializable):
|
|
def __init__(self):
|
|
pass
|
|
|
|
def load_data():
|
|
"""
|
|
Implemented by child classes
|
|
"""
|
|
pass
|