12 lines
523 B
Python
12 lines
523 B
Python
"""
|
|
Automation feature - handles automated workflow execution and scheduling.
|
|
|
|
Moved from interfaces/interfaceDbChatObjects.py to follow proper architectural separation:
|
|
- Interface layer: Data access only (getAutomationDefinition, etc.)
|
|
- Feature layer: Business logic and orchestration (executeAutomation, syncAutomationEvents)
|
|
"""
|
|
|
|
from .mainAutomation import executeAutomation, syncAutomationEvents, createAutomationEventHandler
|
|
|
|
__all__ = ['executeAutomation', 'syncAutomationEvents', 'createAutomationEventHandler']
|
|
|