class BaseChain: | |
def __init__(self, chain: list): | |
raise NotImplementedError | |
def append(self, item: str): | |
raise NotImplementedError | |
def execute(self): | |
raise NotImplementedError |
class BaseChain: | |
def __init__(self, chain: list): | |
raise NotImplementedError | |
def append(self, item: str): | |
raise NotImplementedError | |
def execute(self): | |
raise NotImplementedError |