Skip to content

Notify

dotflow.abc.notify.Notify

Bases: ABC

Notify

Source code in dotflow/abc/notify.py
 8
 9
10
11
12
13
class Notify(ABC):
    """Notify"""

    @abstractmethod
    def send(self, task: Any) -> None:
        """Send"""

send(task) abstractmethod

Send

Source code in dotflow/abc/notify.py
11
12
13
@abstractmethod
def send(self, task: Any) -> None:
    """Send"""