lindsay-qu's picture
Upload 92 files
58974f8
raw
history blame
No virus
222 Bytes
class BaseChain:
def __init__(self, chain: list):
raise NotImplementedError
def append(self, item: str):
raise NotImplementedError
def execute(self):
raise NotImplementedError