Files
bakery-ia/shared/notifications/__init__.py
2025-08-21 20:28:14 +02:00

22 lines
504 B
Python

# ================================================================
# shared/notifications/__init__.py
# ================================================================
"""
Shared Notifications Module - Alert integration using existing notification service
"""
from .alert_integration import (
AlertIntegration,
AlertSeverity,
AlertType,
AlertCategory,
AlertSource
)
__all__ = [
'AlertIntegration',
'AlertSeverity',
'AlertType',
'AlertCategory',
'AlertSource'
]