mirror of
https://github.com/Casvt/MIND.git
synced 2026-02-19 11:54:46 -05:00
Moved reminders.py, static_reminders.py and templates.py to implementations folder
This commit is contained in:
@@ -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}')
|
||||
|
||||
|
||||
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user