Feat: Add facade pattern to send notification

This commit is contained in:
Namu
2025-10-02 09:35:00 +02:00
parent 3479d5dcee
commit a26a8c6cf1
11 changed files with 90 additions and 85 deletions

View File

@@ -1,8 +1,6 @@
import utils.NotificationManager;
void main(String[] args) {
final var notificationManager = NotificationManager.getInstance();
final var app = new Application(notificationManager);
final var app = new Application();
app.run();
}