Files
gauvainboiche 3315cb2336 feat: Semaine 8
2026-05-11 09:25:19 +02:00

7 lines
149 B
Python

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