sender baseclass

This commit is contained in:
Matthias Bisping 2022-05-04 17:05:44 +02:00
parent 531ff8d3e0
commit ef0e805223
3 changed files with 9 additions and 0 deletions

View File

View File

@ -0,0 +1,9 @@
import abc
from typing import Iterable
class Sender(abc.ABC):
@abc.abstractmethod
def __call__(self, package: Iterable):
pass