8 lines
201 B
Python
8 lines
201 B
Python
from domain.entities import Alert
|
|
|
|
class FakeNotifier:
|
|
def __init__(self):
|
|
self.alerts_sent: list[Alert] = []
|
|
|
|
def send_alert(self, alert: Alert):
|
|
self.alerts_sent.append(alert) |