2022-05-05 11:45:52 +02:00

9 lines
150 B
Python

import abc
from typing import Iterable
class Interpreter(abc.ABC):
@abc.abstractmethod
def __call__(self, payloads: Iterable):
pass