|
|
|
|
|
|
|
from utils.automation.workflow import Workflow, WorkflowManager, workflow_manager |
|
from utils.automation.scheduled_tasks import ScheduledTask, TaskManager, task_manager |
|
from utils.automation.reminders import Reminder, ReminderManager, reminder_manager |
|
from utils.automation.batch_processing import BatchOperation, BatchProcessor, batch_processor |
|
from utils.automation.templates import Template, TemplateManager, template_manager |
|
from utils.automation.data_sync import SyncRule, SyncManager, sync_manager |
|
from utils.automation.backup import BackupSchedule, BackupManager, backup_manager |
|
from utils.automation.cleanup import CleanupRule, CleanupManager, cleanup_manager |
|
|
|
|
|
__all__ = [ |
|
|
|
'workflow_manager', |
|
'Workflow', |
|
'WorkflowManager', |
|
|
|
|
|
'task_manager', |
|
'ScheduledTask', |
|
'TaskManager', |
|
|
|
|
|
'reminder_manager', |
|
'Reminder', |
|
'ReminderManager', |
|
|
|
|
|
'batch_processor', |
|
'BatchOperation', |
|
'BatchProcessor', |
|
|
|
|
|
'template_manager', |
|
'Template', |
|
'TemplateManager', |
|
|
|
|
|
'sync_manager', |
|
'SyncRule', |
|
'SyncManager', |
|
|
|
|
|
'backup_manager', |
|
'BackupSchedule', |
|
'BackupManager', |
|
|
|
|
|
'cleanup_manager', |
|
'CleanupRule', |
|
'CleanupManager' |
|
] |