Moved reminders.py, static_reminders.py and templates.py to implementations folder

This commit is contained in:
CasVT
2025-08-18 15:29:35 +02:00
parent 5bfe6e207d
commit d80dd8c2a0
5 changed files with 6 additions and 6 deletions

View File

@@ -108,9 +108,9 @@ class NotificationService:
Raises:
NotificationServiceInUse: The service is still used by a reminder.
"""
from backend.features.reminders import Reminder
from backend.features.static_reminders import StaticReminder
from backend.features.templates import Template
from backend.implementations.reminders import Reminder
from backend.implementations.static_reminders import StaticReminder
from backend.implementations.templates import Template
LOGGER.info(f'Deleting notification service {self.id}')