diff --git a/backend/implementations/notification_services.py b/backend/implementations/notification_services.py index e394b52..037b42b 100644 --- a/backend/implementations/notification_services.py +++ b/backend/implementations/notification_services.py @@ -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}') diff --git a/backend/features/reminders.py b/backend/implementations/reminders.py similarity index 100% rename from backend/features/reminders.py rename to backend/implementations/reminders.py diff --git a/backend/features/static_reminders.py b/backend/implementations/static_reminders.py similarity index 100% rename from backend/features/static_reminders.py rename to backend/implementations/static_reminders.py diff --git a/backend/features/templates.py b/backend/implementations/templates.py similarity index 100% rename from backend/features/templates.py rename to backend/implementations/templates.py diff --git a/frontend/api.py b/frontend/api.py index 77523f6..fe48631 100644 --- a/frontend/api.py +++ b/frontend/api.py @@ -15,11 +15,11 @@ from backend.base.definitions import (ApiKeyEntry, Constants, SendResult, StartType) from backend.base.helpers import folder_path, return_api from backend.base.logging import LOGGER, get_log_filepath -from backend.features.reminders import Reminders -from backend.features.static_reminders import StaticReminders -from backend.features.templates import Templates from backend.implementations.apprise_parser import get_apprise_services from backend.implementations.notification_services import NotificationServices +from backend.implementations.reminders import Reminders +from backend.implementations.static_reminders import StaticReminders +from backend.implementations.templates import Templates from backend.implementations.users import Users from backend.internals.db_backup_import import (create_database_copy, get_backup, get_backups,