7 lines
149 B
Python
7 lines
149 B
Python
from typing import Protocol
|
|
|
|
from domain.entities import Alert
|
|
|
|
class Notifier(Protocol):
|
|
def send_alert(self, alert: Alert) -> None:
|
|
... |