Files
tp1-progpro/src/utils/FastSendNotificationStrategy.java
Namu 3479d5dcee
Some checks failed
SonarQube Scan / SonarQube Trigger (push) Failing after 20s
first commit
2025-09-23 13:14:23 +02:00

10 lines
246 B
Java

package utils;
public class FastSendNotificationStrategy implements SendNotificationStrategy {
@Override
public NotificationState send(String message) {
System.out.println(message);
return NotificationState.SENT;
}
}