File size: 222 Bytes
58974f8
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10

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