Refactor: move strategies in a package, other minor modification

This commit is contained in:
Namu
2025-10-06 11:02:38 +02:00
parent 48136c1b7d
commit 9e3b3cdf58
11 changed files with 15 additions and 12 deletions

View File

@@ -0,0 +1,8 @@
package notificationSendingStrategies;
public class FastSendNotificationStrategy implements SendNotificationStrategy {
@Override
public String makeContent(String message) {
return message;
}
}