9 lines
150 B
Python
9 lines
150 B
Python
import abc
|
|
from typing import Iterable
|
|
|
|
|
|
class Interpreter(abc.ABC):
|
|
@abc.abstractmethod
|
|
def __call__(self, payloads: Iterable):
|
|
pass
|