8 lines
167 B
Python
8 lines
167 B
Python
from embedchain.config.BaseConfig import BaseConfig
|
|
|
|
class AddConfig(BaseConfig):
|
|
"""
|
|
Config for the `add` method.
|
|
"""
|
|
def __init__(self):
|
|
pass |