9 lines
146 B
Python
9 lines
146 B
Python
import abc
|
|
from typing import Iterable
|
|
|
|
|
|
class Receiver(abc.ABC):
|
|
@abc.abstractmethod
|
|
def __call__(self, package: Iterable):
|
|
pass
|