13 lines
246 B
Python
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
|