from typing import Protocol from domain.entities import Alert class Notifier(Protocol): def send_alert(self, alert: Alert) -> None: ...