first commit
Some checks failed
SonarQube Scan / SonarQube Trigger (push) Failing after 20s

This commit is contained in:
Namu
2025-09-23 13:14:23 +02:00
commit 3479d5dcee
22 changed files with 367 additions and 0 deletions

View File

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